- All Implemented Interfaces:
Serializable,Comparable<SnapshotState>,Constable
Represents the state of a snapshot.
The state is determined during snapshot finalization and stored in the SnapshotInfo object in the repository, and this is also
duplicated in RepositoryData.SnapshotDetails. These values can be read back by the get-snapshots
and restore-snapshots APIs.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionSnapshots stored in the repository are only in stateFAILEDif they were aborted because deletion was requested while they were running.Snapshot process has startedSnapshot is incompatible with the current version of the clusterSnapshot completed with at least one shard failure (e.g.Snapshot process completed successfully -
Method Summary
Modifier and TypeMethodDescriptionbooleanReturns true if snapshot completed (successfully or not)static SnapshotStatefromValue(byte value) Generate snapshot state from codebooleanReturns true if snapshot can be restored (at least partially)bytevalue()Returns code that represents the snapshot statestatic SnapshotStateReturns the enum constant of this class with the specified name.static SnapshotState[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
IN_PROGRESS
Snapshot process has started -
SUCCESS
Snapshot process completed successfully -
FAILED
Snapshots stored in the repository are only in stateFAILEDif they were aborted because deletion was requested while they were running. The existence of such a snapshot is usually temporary since the deletion of the now-finalized snapshot is enqueued at the same time, and (unless the deletion fails) will remove theFAILEDsnapshot from the repository once all running snapshots have finished.FAILEDsnapshots are not available for restore; seePARTIALfor partial backups that are retained. -
PARTIAL
Snapshot completed with at least one shard failure (e.g. because a node left the cluster) but was not aborted. The snapshot remains in the repository and successful shards may be restored. -
INCOMPATIBLE
Snapshot is incompatible with the current version of the cluster
-
-
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
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 nameNullPointerException- if the argument is null
-
value
public byte value()Returns code that represents the snapshot state- Returns:
- code for the state
-
completed
public boolean completed()Returns true if snapshot completed (successfully or not)- Returns:
- true if snapshot completed, false otherwise
-
restorable
public boolean restorable()Returns true if snapshot can be restored (at least partially)- Returns:
- true if snapshot can be restored, false otherwise
-
fromValue
Generate snapshot state from code- Parameters:
value- the state code- Returns:
- state
-