Class CheckpointStatsCounts
- java.lang.Object
-
- org.apache.flink.runtime.checkpoint.CheckpointStatsCounts
-
- All Implemented Interfaces:
Serializable
public class CheckpointStatsCounts extends Object implements Serializable
Counts of checkpoints.- See Also:
- Serialized Form
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description long
getNumberOfCompletedCheckpoints()
Returns the number of completed checkpoints.long
getNumberOfFailedCheckpoints()
Returns the number of failed checkpoints.int
getNumberOfInProgressCheckpoints()
Returns the number of in progress checkpoints.long
getNumberOfRestoredCheckpoints()
Returns the number of restored checkpoints.long
getTotalNumberOfCheckpoints()
Returns the total number of checkpoints (in progress, completed, failed).
-
-
-
Method Detail
-
getNumberOfRestoredCheckpoints
public long getNumberOfRestoredCheckpoints()
Returns the number of restored checkpoints.- Returns:
- Number of restored checkpoints.
-
getTotalNumberOfCheckpoints
public long getTotalNumberOfCheckpoints()
Returns the total number of checkpoints (in progress, completed, failed).- Returns:
- Total number of checkpoints.
-
getNumberOfInProgressCheckpoints
public int getNumberOfInProgressCheckpoints()
Returns the number of in progress checkpoints.- Returns:
- Number of in progress checkpoints.
-
getNumberOfCompletedCheckpoints
public long getNumberOfCompletedCheckpoints()
Returns the number of completed checkpoints.- Returns:
- Number of completed checkpoints.
-
getNumberOfFailedCheckpoints
public long getNumberOfFailedCheckpoints()
Returns the number of failed checkpoints.- Returns:
- Number of failed checkpoints.
-
-