You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by ta...@apache.org on 2021/05/24 08:12:44 UTC

[flink] branch release-1.13 updated: [FLINK-22659][docs] Add execution.checkpointing.interval to docs of checkpoint configuration

This is an automated email from the ASF dual-hosted git repository.

tangyun pushed a commit to branch release-1.13
in repository https://gitbox.apache.org/repos/asf/flink.git


The following commit(s) were added to refs/heads/release-1.13 by this push:
     new 31ee0cb  [FLINK-22659][docs] Add execution.checkpointing.interval to docs of checkpoint configuration
31ee0cb is described below

commit 31ee0cb0c4425c4101fe398325d86a0251c49971
Author: Rainie Li <ra...@pinterest.com>
AuthorDate: Mon May 24 01:11:23 2021 -0700

    [FLINK-22659][docs] Add execution.checkpointing.interval to docs of checkpoint configuration
    
    This closes #15979.
---
 docs/content.zh/docs/deployment/config.md | 1 +
 docs/content/docs/deployment/config.md    | 1 +
 2 files changed, 2 insertions(+)

diff --git a/docs/content.zh/docs/deployment/config.md b/docs/content.zh/docs/deployment/config.md
index 14806f9..2b68534 100644
--- a/docs/content.zh/docs/deployment/config.md
+++ b/docs/content.zh/docs/deployment/config.md
@@ -80,6 +80,7 @@ You can configure checkpointing directly in code within your Flink job or applic
   - `state.backend`: The state backend to use. This defines the data structure mechanism for taking snapshots. Common values are `filesystem` or `rocksdb`.
   - `state.checkpoints.dir`: The directory to write checkpoints to. This takes a path URI like *s3://mybucket/flink-app/checkpoints* or *hdfs://namenode:port/flink/checkpoints*.
   - `state.savepoints.dir`: The default directory for savepoints. Takes a path URI, similar to `state.checkpoints.dir`.
+  - `execution.checkpointing.interval`: The base interval setting. To enable checkpointing, you need to set this value larger than 0.
 
 **Web UI**
 
diff --git a/docs/content/docs/deployment/config.md b/docs/content/docs/deployment/config.md
index 935e791..cf3736f 100644
--- a/docs/content/docs/deployment/config.md
+++ b/docs/content/docs/deployment/config.md
@@ -80,6 +80,7 @@ You can configure checkpointing directly in code within your Flink job or applic
   - `state.backend`: The state backend to use. This defines the data structure mechanism for taking snapshots. Common values are `filesystem` or `rocksdb`.
   - `state.checkpoints.dir`: The directory to write checkpoints to. This takes a path URI like *s3://mybucket/flink-app/checkpoints* or *hdfs://namenode:port/flink/checkpoints*.
   - `state.savepoints.dir`: The default directory for savepoints. Takes a path URI, similar to `state.checkpoints.dir`.
+  - `execution.checkpointing.interval`: The base interval setting. To enable checkpointing, you need to set this value larger than 0.
 
 **Web UI**