AHeise commented on a change in pull request #11814:
URL: https://github.com/apache/flink/pull/11814#discussion_r425659405
##########
File path:
flink-streaming-java/src/main/java/org/apache/flink/streaming/runtime/tasks/SubtaskCheckpointCoordinatorImpl.java
##########
@@ -240,7 +240,8 @@ private void finishAndReportAsync(Map<OperatorID,
OperatorSnapshotFutures> snaps
final Future<?> channelWrittenFuture;
if (unalignedCheckpointEnabled) {
ChannelStateWriteResult writeResult =
channelStateWriter.getWriteResult(metadata.getCheckpointId());
- channelWrittenFuture = writeResult.getJointFuture();
+ channelWrittenFuture = writeResult.getJointFuture()
+ .whenComplete((dummy, ex) ->
channelStateWriter.notifyCheckpointComplete(metadata.getCheckpointId()));
Review comment:
I called it `stop` now (symmetric to `start`).
----------------------------------------------------------------
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:
[email protected]