Enum Class IndicesClusterStateService.AllocatedIndices.IndexRemovalReason
java.lang.Object
java.lang.Enum<IndicesClusterStateService.AllocatedIndices.IndexRemovalReason>
org.elasticsearch.indices.cluster.IndicesClusterStateService.AllocatedIndices.IndexRemovalReason
- All Implemented Interfaces:
Serializable
,Comparable<IndicesClusterStateService.AllocatedIndices.IndexRemovalReason>
,Constable
- Enclosing interface:
- IndicesClusterStateService.AllocatedIndices<T extends IndicesClusterStateService.Shard,U extends IndicesClusterStateService.AllocatedIndex<T>>
public static enum IndicesClusterStateService.AllocatedIndices.IndexRemovalReason
extends Enum<IndicesClusterStateService.AllocatedIndices.IndexRemovalReason>
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionThe index has been closed.The index is deleted.Something around index management has failed and the index should be removed.Shard of this index were previously assigned to this node but all shards have been relocated.The index has been reopened.The index is closed as part of the node shutdown process. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
NO_LONGER_ASSIGNED
public static final IndicesClusterStateService.AllocatedIndices.IndexRemovalReason NO_LONGER_ASSIGNEDShard of this index were previously assigned to this node but all shards have been relocated. The index should be removed and all associated resources released. Persistent parts of the index like the shards files, state and transaction logs are kept around in the case of a disaster recovery. -
DELETED
The index is deleted. Persistent parts of the index like the shards files, state and transaction logs are removed once all resources are released. -
CLOSED
The index has been closed. The index should be removed and all associated resources released. Persistent parts of the index like the shards files, state and transaction logs are kept around in the case of a disaster recovery. -
FAILURE
Something around index management has failed and the index should be removed. Persistent parts of the index like the shards files, state and transaction logs are kept around in the case of a disaster recovery. -
REOPENED
The index has been reopened. The index should be removed and all associated resources released. Persistent parts of the index like the shards files, state and transaction logs are kept around in the case of a disaster recovery. -
SHUTDOWN
The index is closed as part of the node shutdown process. The index should be removed and all associated resources released. Persistent parts of the index like the shards files, state and transaction logs should be kept around in the case the node restarts.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-