Package | Description |
---|---|
org.apache.flink.runtime.checkpoint | |
org.apache.flink.runtime.rest.messages.checkpoints |
Modifier and Type | Method and Description |
---|---|
CheckpointStatsStatus |
PendingCheckpointStats.getStatus() |
CheckpointStatsStatus |
FailedCheckpointStats.getStatus() |
abstract CheckpointStatsStatus |
AbstractCheckpointStats.getStatus()
Returns the status of this checkpoint.
|
CheckpointStatsStatus |
CompletedCheckpointStats.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.
|
Modifier and Type | Method and Description |
---|---|
CheckpointStatsStatus |
TaskCheckpointStatistics.getCheckpointStatus() |
CheckpointStatsStatus |
CheckpointStatistics.getStatus() |
Constructor and Description |
---|
CompletedCheckpointStatistics(long id,
CheckpointStatsStatus status,
boolean savepoint,
long triggerTimestamp,
long latestAckTimestamp,
long stateSize,
long duration,
long alignmentBuffered,
int numSubtasks,
int numAckSubtasks,
Map<JobVertexID,TaskCheckpointStatistics> checkpointingStatisticsPerTask,
String externalPath,
boolean discarded) |
FailedCheckpointStatistics(long id,
CheckpointStatsStatus status,
boolean savepoint,
long triggerTimestamp,
long latestAckTimestamp,
long stateSize,
long duration,
long alignmentBuffered,
int numSubtasks,
int numAckSubtasks,
Map<JobVertexID,TaskCheckpointStatistics> checkpointingStatisticsPerTask,
long failureTimestamp,
String failureMessage) |
PendingCheckpointStatistics(long id,
CheckpointStatsStatus status,
boolean savepoint,
long triggerTimestamp,
long latestAckTimestamp,
long stateSize,
long duration,
long alignmentBuffered,
int numSubtasks,
int numAckSubtasks,
Map<JobVertexID,TaskCheckpointStatistics> checkpointingStatisticsPerTask) |
TaskCheckpointStatistics(long checkpointId,
CheckpointStatsStatus checkpointStatus,
long latestAckTimestamp,
long stateSize,
long duration,
long alignmentBuffered,
int numSubtasks,
int numAckSubtasks) |
TaskCheckpointStatisticsWithSubtaskDetails(long checkpointId,
CheckpointStatsStatus checkpointStatus,
long latestAckTimestamp,
long stateSize,
long duration,
long alignmentBuffered,
int numSubtasks,
int numAckSubtasks,
TaskCheckpointStatisticsWithSubtaskDetails.Summary summary,
List<SubtaskCheckpointStatistics> subtaskCheckpointStatistics) |
Copyright © 2014–2021 The Apache Software Foundation. All rights reserved.