Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

ERROR

CODE

RETRIABLE

DESCRIPTION

CREATED_UNDER_REPLICATED

7779

False

The server createda topic or partitions without the full set of replicas being active.


Code Block
languagejava
titleErrors
package org.apache.kafka.common.protocol;
public enum Errors {
...
    CREATED_UNDER_REPLICATED(

...

79, "The server created a topic or partitions without the full set of replicas being active.",
        CreatedUnderReplicatedException::new);
}

AdminClient APIs

The AdminClient will be updated to expose the new fields. 

...