pnowojski commented on a change in pull request #16637:
URL: https://github.com/apache/flink/pull/16637#discussion_r685319318
##########
File path:
flink-runtime/src/main/java/org/apache/flink/runtime/checkpoint/OperatorCoordinatorCheckpoints.java
##########
@@ -121,14 +123,17 @@ private static void acknowledgeAllCoordinators(
final Throwable error =
checkpoint.isDisposed() ? checkpoint.getFailureCause()
: null;
+ CheckpointFailureReason reason =
CheckpointFailureReason.TRIGGER_CHECKPOINT_FAILURE;
Review comment:
From what I can see `acknowledgeAllCoordinators` is called before
(CheckpointCoordinator:L578) triggerCheckpoint RPC is called on Task Managers
(CheckpointCoordinator:L623). So this happens very early in the in the
checkpoint triggering process and is consistent with out
`TRIGGER_CHECKPOINT_FAILURE` usages.
--
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.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]