Github user zentol commented on a diff in the pull request:

    https://github.com/apache/flink/pull/4123#discussion_r121904870
  
    --- Diff: 
flink-core/src/main/java/org/apache/flink/configuration/HighAvailabilityOptions.java
 ---
    @@ -100,6 +100,45 @@
                        .defaultValue("/flink")
                        .withDeprecatedKeys("recovery.zookeeper.path.root");
     
    +   public static final ConfigOption<String> HA_ZOOKEEPER_NAMESPACE =
    +                   key("high-availability.zookeeper.path.namespace")
    +                   .noDefaultValue();
    +
    +   public static final ConfigOption<String> HA_ZOOKEEPER_LATCH_PATH =
    +                   key("high-availability.zookeeper.path.latch")
    +                   .defaultValue("/leaderlatch")
    +                   .withDeprecatedKeys("recovery.zookeeper.path.latch");
    +
    +   /** ZooKeeper root path (ZNode) for job graphs. */
    +   public static final ConfigOption<String> HA_ZOOKEEPER_JOBGRAPHS_PATH =
    +                   key("high-availability.zookeeper.path.jobgraphs")
    +                   .defaultValue("/jobgraphs")
    +                   
.withDeprecatedKeys("recovery.zookeeper.path.jobgraphs");
    +
    +   public static final ConfigOption<String> HA_ZOOKEEPER_LEADER_PATH =
    +                   key("high-availability.zookeeper.path.leader")
    +                   .defaultValue("/leader")
    +                   .withDeprecatedKeys("recovery.zookeeper.path.leader");
    +
    +   /** ZooKeeper root path (ZNode) for completed checkpoints. */
    +   public static final ConfigOption<String> HA_ZOOKEEPER_CHECKPOINTS_PATH =
    +                   key("high-availability.zookeeper.path.checkpoints")
    +                   .defaultValue("/checkpoints")
    +                   
.withDeprecatedKeys("recovery.zookeeper.path.checkpoints");
    +
    +   /** ZooKeeper root path (ZNode) for checkpoint counters. */
    +   public static final ConfigOption<String> 
HA_ZOOKEEPER_CHECKPOINT_COUNTER_PATH =
    --- End diff --
    
    please remove the `HA_` prefix from all options.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

Reply via email to