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>
  • 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.
    • 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