[
https://issues.apache.org/jira/browse/FLINK-6498?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16053841#comment-16053841
]
ASF GitHub Bot commented on FLINK-6498:
---------------------------------------
Github user zentol commented on a diff in the pull request:
https://github.com/apache/flink/pull/4123#discussion_r122681364
--- Diff:
flink-core/src/main/java/org/apache/flink/configuration/HighAvailabilityOptions.java
---
@@ -93,13 +85,60 @@
//
------------------------------------------------------------------------
/**
+ * The ZooKeeper quorum to use, when running Flink in a
high-availability mode with ZooKeeper.
+ */
+ public static final ConfigOption<String> HA_ZOOKEEPER_QUORUM =
+ key("high-availability.zookeeper.quorum")
+ .noDefaultValue()
+ .withDeprecatedKeys("recovery.zookeeper.quorum");
+
+ /**
* The root path under which Flink stores its entries in ZooKeeper
*/
public static final ConfigOption<String> HA_ZOOKEEPER_ROOT =
key("high-availability.zookeeper.path.root")
.defaultValue("/flink")
.withDeprecatedKeys("recovery.zookeeper.path.root");
+ public static final ConfigOption<String> HA_ZOOKEEPER_NAMESPACE =
+ key("high-availability.zookeeper.path.namespace")
+ .noDefaultValue();
--- End diff --
missing deprecated key `"recovery.zookeeper.path.namespace"`
> Migrate Zookeeper configuration options
> ---------------------------------------
>
> Key: FLINK-6498
> URL: https://issues.apache.org/jira/browse/FLINK-6498
> Project: Flink
> Issue Type: Sub-task
> Components: Distributed Coordination
> Reporter: Chesnay Schepler
> Assignee: Fang Yong
>
--
This message was sent by Atlassian JIRA
(v6.4.14#64029)