Package org.apache.kafka.clients.admin
Class AlterReplicaLogDirsResult
- java.lang.Object
-
- org.apache.kafka.clients.admin.AlterReplicaLogDirsResult
-
@Evolving public class AlterReplicaLogDirsResult extends Object
The result ofAdmin.alterReplicaLogDirs(Map, AlterReplicaLogDirsOptions)
. To retrieve the detailed result per specifiedTopicPartitionReplica
, usevalues()
. To retrieve the overall result only, useall()
.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description KafkaFuture<Void>
all()
Return aKafkaFuture
which succeeds onKafkaFuture.get()
if all the replica movement have succeeded.Map<TopicPartitionReplica,KafkaFuture<Void>>
values()
Return a map fromTopicPartitionReplica
toKafkaFuture
which holds the status of individual replica movement.
-
-
-
Method Detail
-
values
public Map<TopicPartitionReplica,KafkaFuture<Void>> values()
Return a map fromTopicPartitionReplica
toKafkaFuture
which holds the status of individual replica movement. To check the result of individual replica movement, callKafkaFuture.get()
from the value contained in the returned map. If there is no error, it will return silently; if not, anException
will be thrown like the following:CancellationException
: The task was canceled.InterruptedException
: Interrupted while joining I/O thread.ExecutionException
: Execution failed with the following causes:ClusterAuthorizationException
: Authorization failed. (CLUSTER_AUTHORIZATION_FAILED, 31)InvalidTopicException
: The specified topic name is too long. (INVALID_TOPIC_EXCEPTION, 17)LogDirNotFoundException
: The specified log directory is not found in the broker. (LOG_DIR_NOT_FOUND, 57)ReplicaNotAvailableException
: The replica does not exist on the broker. (REPLICA_NOT_AVAILABLE, 9)KafkaStorageException
: Disk error occurred. (KAFKA_STORAGE_ERROR, 56)UnknownServerException
: Unknown. (UNKNOWN_SERVER_ERROR, -1)
-
all
public KafkaFuture<Void> all()
Return aKafkaFuture
which succeeds onKafkaFuture.get()
if all the replica movement have succeeded. if not, it throws anException
described invalues()
method.
-
-