You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@flink.apache.org by rmetzger <gi...@git.apache.org> on 2018/04/17 17:01:58 UTC

[GitHub] flink pull request #4883: [FLINK-4809] Operators should tolerate checkpoint ...

Github user rmetzger commented on a diff in the pull request:

    https://github.com/apache/flink/pull/4883#discussion_r182155763
  
    --- Diff: docs/dev/stream/state/checkpointing.md ---
    @@ -118,6 +120,9 @@ env.getCheckpointConfig.setMinPauseBetweenCheckpoints(500)
     // checkpoints have to complete within one minute, or are discarded
     env.getCheckpointConfig.setCheckpointTimeout(60000)
     
    +// prevent the tasks from failing if an error happens in their checkpointing, the checkpoint will just be declined.
    +env.getCheckpointConfig.setFailTasksOnCheckpointingErrors(false)
    --- End diff --
    
    This line is missing from the Java tab.


---