Class CheckpointStatistics.CompletedCheckpointStatistics
- java.lang.Object
-
- org.apache.flink.runtime.rest.messages.checkpoints.CheckpointStatistics
-
- org.apache.flink.runtime.rest.messages.checkpoints.CheckpointStatistics.CompletedCheckpointStatistics
-
- All Implemented Interfaces:
ResponseBody
- Enclosing class:
- CheckpointStatistics
public static final class CheckpointStatistics.CompletedCheckpointStatistics extends CheckpointStatistics
Statistics for a completed checkpoint.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.apache.flink.runtime.rest.messages.checkpoints.CheckpointStatistics
CheckpointStatistics.CompletedCheckpointStatistics, CheckpointStatistics.FailedCheckpointStatistics, CheckpointStatistics.PendingCheckpointStatistics
-
-
Field Summary
Fields Modifier and Type Field Description static String
FIELD_NAME_DISCARDED
static String
FIELD_NAME_EXTERNAL_PATH
-
Fields inherited from class org.apache.flink.runtime.rest.messages.checkpoints.CheckpointStatistics
FIELD_NAME_ALIGNMENT_BUFFERED, FIELD_NAME_CHECKPOINT_TYPE, FIELD_NAME_CHECKPOINTED_SIZE, FIELD_NAME_DURATION, FIELD_NAME_ID, FIELD_NAME_IS_SAVEPOINT, FIELD_NAME_LATEST_ACK_TIMESTAMP, FIELD_NAME_NUM_ACK_SUBTASKS, FIELD_NAME_NUM_SUBTASKS, FIELD_NAME_PERSISTED_DATA, FIELD_NAME_PROCESSED_DATA, FIELD_NAME_SAVEPOINT_FORMAT, FIELD_NAME_STATE_SIZE, FIELD_NAME_STATUS, FIELD_NAME_TASKS, FIELD_NAME_TRIGGER_TIMESTAMP
-
-
Constructor Summary
Constructors 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)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
String
getExternalPath()
int
hashCode()
boolean
isDiscarded()
-
Methods inherited from class org.apache.flink.runtime.rest.messages.checkpoints.CheckpointStatistics
generateCheckpointStatistics, getCheckpointedSize, getCheckpointStatisticsPerTask, getCheckpointType, getDuration, getId, getLatestAckTimestamp, getNumAckSubtasks, getNumSubtasks, getStateSize, getStatus, getTriggerTimestamp, isSavepoint
-
-
-
-
Field Detail
-
FIELD_NAME_EXTERNAL_PATH
public static final String FIELD_NAME_EXTERNAL_PATH
- See Also:
- Constant Field Values
-
FIELD_NAME_DISCARDED
public static final String FIELD_NAME_DISCARDED
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
CompletedCheckpointStatistics
public 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, @Nullable String externalPath, boolean discarded)
-
-
Method Detail
-
getExternalPath
@Nullable public String getExternalPath()
-
isDiscarded
public boolean isDiscarded()
-
equals
public boolean equals(Object o)
- Overrides:
equals
in classCheckpointStatistics
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classCheckpointStatistics
-
-