?????? flink???????????????? flink last checkpoint ???????????????????????????? state ??????????????

2020-06-24 文章 cs
??checkpoint??
StreamExecutionEnvironment.getCheckpointConfig().setFailOnCheckpointingErrors(true);
/**
 * Sets the expected behaviour for tasks in case that they encounter an error 
in their checkpointing procedure.
 * If this is set to true, the task will fail on checkpointing error. If this 
is set to false, the task will only
 * decline a the checkpoint and continue running. The default is true.
 */
public void setFailOnCheckpointingErrors(boolean failOnCheckpointingErrors) {
   this.failOnCheckpointingErrors = failOnCheckpointingErrors;
}


----
??:"LakeShen"

flink???????????????? flink last checkpoint ???????????????????????????? state ??????????????

2020-06-22 文章 ????????
??flink?? 
??checkpoint