Package org.opensearch.indices.cluster
Enum IndicesClusterStateService.AllocatedIndices.IndexRemovalReason
java.lang.Object
java.lang.Enum<IndicesClusterStateService.AllocatedIndices.IndexRemovalReason>
org.opensearch.indices.cluster.IndicesClusterStateService.AllocatedIndices.IndexRemovalReason
- All Implemented Interfaces:
Serializable
,Comparable<IndicesClusterStateService.AllocatedIndices.IndexRemovalReason>
- Enclosing interface:
IndicesClusterStateService.AllocatedIndices<T extends IndicesClusterStateService.Shard,
U extends IndicesClusterStateService.AllocatedIndex<T>>
@PublicApi(since="1.0.0")
public static enum IndicesClusterStateService.AllocatedIndices.IndexRemovalReason
extends Enum<IndicesClusterStateService.AllocatedIndices.IndexRemovalReason>
Why the index was removed
- Opensearch.api:
-
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. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this type with the specified name.values()
Returns an array containing the constants of this enum type, 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.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException
- if the argument is null
-