Myasuka commented on a change in pull request #8693: URL: https://github.com/apache/flink/pull/8693#discussion_r426365219
########## File path: flink-runtime/src/main/java/org/apache/flink/runtime/state/CheckpointListener.java ########## @@ -38,4 +38,12 @@ * @throws Exception */ void notifyCheckpointComplete(long checkpointId) throws Exception; + + /** + * This method is called as a notification once a distributed checkpoint has been aborted. + * + * @param checkpointId The ID of the checkpoint that has been aborted. + * @throws Exception + */ + void notifyCheckpointAborted(long checkpointId) throws Exception; Review comment: Once this PR merged, I planned to add release notes in JIRA. From my previous experience, this interface change might not publish in the final release notes of flink official website. ---------------------------------------------------------------- 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