Enum Class PersistenceClusterDataRecoveryPolicy

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

public enum PersistenceClusterDataRecoveryPolicy extends Enum<PersistenceClusterDataRecoveryPolicy>
Specifies the policy that will be respected during persistence cluster start
  • Enum Constant Details

    • FULL_RECOVERY_ONLY

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