Enum HotRestartClusterDataRecoveryPolicy

java.lang.Object
java.lang.Enum<HotRestartClusterDataRecoveryPolicy>
com.hazelcast.config.HotRestartClusterDataRecoveryPolicy
All Implemented Interfaces:
Serializable, Comparable<HotRestartClusterDataRecoveryPolicy>, java.lang.constant.Constable

public enum HotRestartClusterDataRecoveryPolicy
extends Enum<HotRestartClusterDataRecoveryPolicy>
Specifies the policy that will be respected during hot restart cluster start
  • Enum Constant Details

    • FULL_RECOVERY_ONLY

      public static final HotRestartClusterDataRecoveryPolicy FULL_RECOVERY_ONLY
      Starts the cluster only when all expected nodes are present and correct. Otherwise, it fails.
    • PARTIAL_RECOVERY_MOST_RECENT

      public static final HotRestartClusterDataRecoveryPolicy PARTIAL_RECOVERY_MOST_RECENT
      Starts the cluster with the members which have most up-to-date partition table and successfully restored their data. All other members will leave the cluster and force-start themselves. If no member restores its data successfully, cluster start fails.
    • PARTIAL_RECOVERY_MOST_COMPLETE

      public static final HotRestartClusterDataRecoveryPolicy PARTIAL_RECOVERY_MOST_COMPLETE
      Starts the cluster with the largest group of members which have the same partition table version and successfully restored their data. All other members will leave the cluster and force-start themselves. If no member restores its data successfully, cluster start fails.
  • Method Details

    • values

      public static HotRestartClusterDataRecoveryPolicy[] 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 HotRestartClusterDataRecoveryPolicy valueOf​(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:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null