You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by ch...@apache.org on 2017/07/25 09:09:59 UTC

flink git commit: [FLINK-6940] [docs] Clarify the effect of configuring per-job state

Repository: flink
Updated Branches:
  refs/heads/master 038a9acc5 -> 8215f2e18


[FLINK-6940] [docs] Clarify the effect of configuring per-job state

[skip ci]

This closes #4136.


Project: http://git-wip-us.apache.org/repos/asf/flink/repo
Commit: http://git-wip-us.apache.org/repos/asf/flink/commit/8215f2e1
Tree: http://git-wip-us.apache.org/repos/asf/flink/tree/8215f2e1
Diff: http://git-wip-us.apache.org/repos/asf/flink/diff/8215f2e1

Branch: refs/heads/master
Commit: 8215f2e18b7cc44cf0bef0b560cbc757c2783b72
Parents: 038a9ac
Author: Bowen Li <bo...@gmail.com>
Authored: Tue Jul 25 11:07:51 2017 +0200
Committer: zentol <ch...@apache.org>
Committed: Tue Jul 25 11:09:38 2017 +0200

----------------------------------------------------------------------
 docs/ops/state_backends.md | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flink/blob/8215f2e1/docs/ops/state_backends.md
----------------------------------------------------------------------
diff --git a/docs/ops/state_backends.md b/docs/ops/state_backends.md
index 85a34a9..165cbad 100644
--- a/docs/ops/state_backends.md
+++ b/docs/ops/state_backends.md
@@ -123,9 +123,7 @@ RocksDBStateBackend is currently the only backend that offers incremental checkp
 
 ## Configuring a State Backend
 
-State backends can be configured per job. In addition, you can define a default state backend to be used when the
-job does not explicitly define a state backend.
-
+The default state backend, if you specify nothing, is the jobmanager. If you wish to establish a different default for all jobs on your cluster, you can do so by defining a new default state backend in **flink-conf.yaml**. The default state backend can be overridden on a per-job basis, as shown below.
 
 ### Setting the Per-job State Backend