Enum Class PartitionReassignmentsStatus

java.lang.Object
java.lang.Enum<PartitionReassignmentsStatus>
org.apache.kafka.clients.admin.PartitionReassignmentsStatus
All Implemented Interfaces:
Serializable, Comparable<PartitionReassignmentsStatus>, Constable

public enum PartitionReassignmentsStatus extends Enum<PartitionReassignmentsStatus>
Denotes the status of the partition reassignments of a given Confluent Balancer operation. Operations are free to give specific meaning to each partition reassignment status and its effect on the underlying operation, but in general: 1. ERROR - when the reassignments were initiated but did not complete successfully. 2. PENDING - when the balancer operation is yet to start on the partition reassignments. 3. IN_PROGRESS - when the partitions are actively being reassigned. 4. CANCELED - when the reassignments were cancelled prior to initiation. Canceled reassignments never started. 5. COMPLETED - when the reassignments were completed succesfully 6. UNKNOWN - clients will fall back to this status when they receive an unrecognized status value (since 7.0.0)