lschampion commented on issue #10166:
URL: https://github.com/apache/hudi/issues/10166#issuecomment-1824073145

   note my flink version: 1.13.6
   is this require  might come true when using a flink version more than 1.14?
   
   
   here are flink doc for feature 'ENABLE_CHECKPOINTS_AFTER_TASKS_FINISH' :
   Checkpointing with parts of the graph finished 
[#](https://nightlies.apache.org/flink/flink-docs-release-1.18/docs/dev/datastream/fault-tolerance/checkpointing/#checkpointing-with-parts-of-the-graph-finished)
   Starting from Flink 1.14 it is possible to continue performing checkpoints 
even if parts of the job graph have finished processing all data, which might 
happen if it contains bounded sources. This feature is enabled by default since 
1.15, and it could be disabled via a feature flag:
   
   Configuration config = new Configuration();
   
config.set(ExecutionCheckpointingOptions.ENABLE_CHECKPOINTS_AFTER_TASKS_FINISH, 
false);
   StreamExecutionEnvironment env = 
StreamExecutionEnvironment.getExecutionEnvironment(config);


-- 
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]

Reply via email to