Enum Class IndicesClusterStateService.AllocatedIndices.IndexRemovalReason

<IndicesClusterStateService.AllocatedIndices.IndexRemovalReason>
org.elasticsearch.indices.cluster.IndicesClusterStateService.AllocatedIndices.IndexRemovalReason
All Implemented Interfaces:
, <
Enclosing interface:
IndicesClusterStateService.AllocatedIndices<T extends IndicesClusterStateService.Shard,​U extends IndicesClusterStateService.AllocatedIndex<T>>

public static enum IndicesClusterStateService.AllocatedIndices.IndexRemovalReason extends <IndicesClusterStateService.AllocatedIndices.IndexRemovalReason>
  • Nested Class Summary

    Nested classes/interfaces inherited from class java.lang.

    < extends <>>
  • Enum Constant Summary

    Enum Constants
    Enum Constant
    Description
    The 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 Type
    Method
    Description
     name)
    Returns the enum constant of this class with the specified name.
    Returns an array containing the constants of this enum class, in the order they are declared.

    Methods inherited from class java.lang.

    , , , , , , , , , ,

    Methods inherited from class java.lang.

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

    • 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

      public static  name)
      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:
      - if this enum class has no constant with the specified name
      - if the argument is null