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:11:43 UTC

[flink] branch master 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 master
in repository https://gitbox.apache.org/repos/asf/flink.git


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

commit 21c44688e982caf106e5fc509409717c6014f990
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 cf1c24b..78f7f44 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 907af78..56b2960 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**