yanghua commented on a change in pull request #8322: [FLINK-12364] Introduce a CheckpointFailureManager to centralized manage checkpoint failure URL: https://github.com/apache/flink/pull/8322#discussion_r283755801
########## File path: flink-runtime/src/main/java/org/apache/flink/runtime/checkpoint/CheckpointCoordinator.java ########## @@ -435,6 +439,12 @@ public boolean triggerCheckpoint(long timestamp, boolean isPeriodic) { triggerCheckpoint(timestamp, checkpointProperties, null, isPeriodic, false); return true; } catch (CheckpointException e) { + try { + long latestGeneratedCheckpointId = getCheckpointIdCounter().getAndIncrement(); Review comment: > I thought about this but can not make sure if we can get the correct latest checkpoint id when allow concurrent checkpointing. Actually, I mean I cannot get a better way to extract the `latestGeneratedCheckpointId ` except using `CheckpointIDCounter`. I think using `pendingCheckpoints` or `recentPendingCheckpoints` to get the latest pending checkpoint may not accurate when allow concurrent checkpointing. What's your suggestion to get the value of this variable? ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org With regards, Apache Git Services