Uses of Class
org.apache.flink.runtime.checkpoint.CheckpointStatsStatus
-
Packages that use CheckpointStatsStatus Package Description org.apache.flink.runtime.checkpoint org.apache.flink.runtime.rest.messages.checkpoints -
-
Uses of CheckpointStatsStatus in org.apache.flink.runtime.checkpoint
Methods in org.apache.flink.runtime.checkpoint that return CheckpointStatsStatus Modifier and Type Method Description abstract CheckpointStatsStatus
AbstractCheckpointStats. getStatus()
Returns the status of this checkpoint.CheckpointStatsStatus
CompletedCheckpointStats. getStatus()
CheckpointStatsStatus
FailedCheckpointStats. getStatus()
CheckpointStatsStatus
PendingCheckpointStats. getStatus()
static CheckpointStatsStatus
CheckpointStatsStatus. valueOf(String name)
Returns the enum constant of this type with the specified name.static CheckpointStatsStatus[]
CheckpointStatsStatus. values()
Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of CheckpointStatsStatus in org.apache.flink.runtime.rest.messages.checkpoints
Methods in org.apache.flink.runtime.rest.messages.checkpoints that return CheckpointStatsStatus Modifier and Type Method Description CheckpointStatsStatus
TaskCheckpointStatistics. getCheckpointStatus()
CheckpointStatsStatus
CheckpointStatistics. getStatus()
Constructors in org.apache.flink.runtime.rest.messages.checkpoints with parameters of type CheckpointStatsStatus Constructor Description CompletedCheckpointStatistics(long id, CheckpointStatsStatus status, boolean savepoint, String savepointFormat, long triggerTimestamp, long latestAckTimestamp, long checkpointedSize, long stateSize, long duration, long alignmentBuffered, long processedData, long persistedData, int numSubtasks, int numAckSubtasks, org.apache.flink.runtime.rest.messages.checkpoints.CheckpointStatistics.RestAPICheckpointType checkpointType, Map<JobVertexID,TaskCheckpointStatistics> checkpointingStatisticsPerTask, String externalPath, boolean discarded)
FailedCheckpointStatistics(long id, CheckpointStatsStatus status, boolean savepoint, String savepointFormat, long triggerTimestamp, long latestAckTimestamp, long checkpointedSize, long stateSize, long duration, long alignmentBuffered, long processedData, long persistedData, int numSubtasks, int numAckSubtasks, org.apache.flink.runtime.rest.messages.checkpoints.CheckpointStatistics.RestAPICheckpointType checkpointType, Map<JobVertexID,TaskCheckpointStatistics> checkpointingStatisticsPerTask, long failureTimestamp, String failureMessage)
PendingCheckpointStatistics(long id, CheckpointStatsStatus status, boolean savepoint, String savepointFormat, long triggerTimestamp, long latestAckTimestamp, long checkpointedSize, long stateSize, long duration, long alignmentBuffered, long processedData, long persistedData, int numSubtasks, int numAckSubtasks, org.apache.flink.runtime.rest.messages.checkpoints.CheckpointStatistics.RestAPICheckpointType checkpointType, Map<JobVertexID,TaskCheckpointStatistics> checkpointingStatisticsPerTask)
TaskCheckpointStatistics(long checkpointId, CheckpointStatsStatus checkpointStatus, long latestAckTimestamp, long checkpointedSize, long stateSize, long duration, long alignmentBuffered, long processedData, long persistedData, int numSubtasks, int numAckSubtasks)
TaskCheckpointStatisticsWithSubtaskDetails(long checkpointId, CheckpointStatsStatus checkpointStatus, long latestAckTimestamp, long checkpointedSize, long stateSize, long duration, long alignmentBuffered, long processedData, long persistedData, int numSubtasks, int numAckSubtasks, TaskCheckpointStatisticsWithSubtaskDetails.Summary summary, List<SubtaskCheckpointStatistics> subtaskCheckpointStatistics)
-