You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by tr...@apache.org on 2018/06/30 20:13:53 UTC

flink git commit: [hotfix] Remove deprecated parameter high-availability.zookeeper.storageDir from doc

Repository: flink
Updated Branches:
  refs/heads/master a1b6153dd -> 6f7dfc595


[hotfix] Remove deprecated parameter high-availability.zookeeper.storageDir from doc

This closes #6229.


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

Branch: refs/heads/master
Commit: 6f7dfc595bec03ecba5955e58a22f3da44445ca1
Parents: a1b6153
Author: Sayat Satybaldiyev <sa...@gmail.com>
Authored: Fri Jun 29 15:22:57 2018 +0200
Committer: Till Rohrmann <tr...@apache.org>
Committed: Sat Jun 30 22:13:39 2018 +0200

----------------------------------------------------------------------
 docs/ops/jobmanager_high_availability.md | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flink/blob/6f7dfc59/docs/ops/jobmanager_high_availability.md
----------------------------------------------------------------------
diff --git a/docs/ops/jobmanager_high_availability.md b/docs/ops/jobmanager_high_availability.md
index a994558..320f9d6 100644
--- a/docs/ops/jobmanager_high_availability.md
+++ b/docs/ops/jobmanager_high_availability.md
@@ -93,7 +93,7 @@ In order to start an HA-cluster add the following configuration keys to `conf/fl
 - **Storage directory** (required): JobManager metadata is persisted in the file system *storageDir* and only a pointer to this state is stored in ZooKeeper.
 
     <pre>
-high-availability.zookeeper.storageDir: hdfs:///flink/recovery
+high-availability.storageDir: hdfs:///flink/recovery
     </pre>
 
     The `storageDir` stores all metadata needed to recover a JobManager failure.
@@ -109,7 +109,7 @@ high-availability: zookeeper
 high-availability.zookeeper.quorum: localhost:2181
 high-availability.zookeeper.path.root: /flink
 high-availability.cluster-id: /cluster_one # important: customize per cluster
-high-availability.zookeeper.storageDir: hdfs:///flink/recovery</pre>
+high-availability.storageDir: hdfs:///flink/recovery</pre>
 
 2. **Configure masters** in `conf/masters`:
 
@@ -191,7 +191,7 @@ This means that the application can be restarted 9 times for failed attempts bef
    <pre>
 high-availability: zookeeper
 high-availability.zookeeper.quorum: localhost:2181
-high-availability.zookeeper.storageDir: hdfs:///flink/recovery
+high-availability.storageDir: hdfs:///flink/recovery
 high-availability.zookeeper.path.root: /flink
 yarn.application-attempts: 10</pre>