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 Details

    • NO_LONGER_ASSIGNED

      Shard 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