Enum UnassignedInfo.AllocationStatus

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<UnassignedInfo.AllocationStatus>, java.lang.constant.Constable, Writeable
    Enclosing class:
    UnassignedInfo

    public static enum UnassignedInfo.AllocationStatus
    extends java.lang.Enum<UnassignedInfo.AllocationStatus>
    implements Writeable
    Captures the status of an unsuccessful allocation attempt for the shard, causing it to remain in the unassigned state. Note, ordering of the enum is important, make sure to add new values at the end and handle version serialization properly.
    • Nested Class Summary

      • Nested classes/interfaces inherited from class java.lang.Enum

        java.lang.Enum.EnumDesc<E extends java.lang.Enum<E>>
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      DECIDERS_NO
      The shard was denied allocation to a node because the allocation deciders all returned a NO decision
      DECIDERS_THROTTLED
      The allocation attempt was throttled on the shard by the allocation deciders
      DELAYED_ALLOCATION
      Allocation decision has been delayed
      FETCHING_SHARD_DATA
      Waiting on getting shard data from all nodes before making a decision about where to allocate the shard
      NO_ATTEMPT
      No allocation attempt has been made yet
      NO_VALID_SHARD_COPY
      The shard was denied allocation to a node because there were no valid shard copies found for it; this can happen on node restart with gateway allocation
    • Enum Constant Detail

      • DECIDERS_NO

        public static final UnassignedInfo.AllocationStatus DECIDERS_NO
        The shard was denied allocation to a node because the allocation deciders all returned a NO decision
      • NO_VALID_SHARD_COPY

        public static final UnassignedInfo.AllocationStatus NO_VALID_SHARD_COPY
        The shard was denied allocation to a node because there were no valid shard copies found for it; this can happen on node restart with gateway allocation
      • DECIDERS_THROTTLED

        public static final UnassignedInfo.AllocationStatus DECIDERS_THROTTLED
        The allocation attempt was throttled on the shard by the allocation deciders
      • FETCHING_SHARD_DATA

        public static final UnassignedInfo.AllocationStatus FETCHING_SHARD_DATA
        Waiting on getting shard data from all nodes before making a decision about where to allocate the shard
    • Method Detail

      • values

        public static UnassignedInfo.AllocationStatus[] 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

        public static UnassignedInfo.AllocationStatus valueOf​(java.lang.String name)
        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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • value

        public java.lang.String value()