pnowojski commented on a change in pull request #17135: URL: https://github.com/apache/flink/pull/17135#discussion_r704089770
########## File path: docs/content/docs/dev/datastream/fault-tolerance/checkpointing.md ########## @@ -147,6 +154,11 @@ env.getCheckpointConfig.enableUnalignedCheckpoints() // sets the checkpoint storage where checkpoint snapshots will be written env.getCheckpointConfig.setCheckpointStorage("hdfs:///my/checkpoint/dir") + +// enable checkpointing with finished tasks +val config = new Configuration() +config.set(ExecutionCheckpointingOptions.ENABLE_CHECKPOINTS_AFTER_TASKS_FINISH, true) +env.configure(config) Review comment: I encourage you to try add it yourself, sometimes it's not that difficult: https://github.com/apache/flink/pull/17100/commits/e83081e3d734448f232e6f676d71c46a44c4081e Here it might be a bit more tricky with using {{Configuration}}, but maybe there is already an example how to do it that you can just copy/paste/rename. -- 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: issues-unsubscr...@flink.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org