You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kyuubi.apache.org by ul...@apache.org on 2021/10/08 08:56:40 UTC

[incubator-kyuubi] branch branch-1.3 updated: [KYUUBI #1176][FOLLOWUP] change configuration(ha.zookeeper.acl.engine.enabled) version

This is an automated email from the ASF dual-hosted git repository.

ulyssesyou pushed a commit to branch branch-1.3
in repository https://gitbox.apache.org/repos/asf/incubator-kyuubi.git


The following commit(s) were added to refs/heads/branch-1.3 by this push:
     new 547b270  [KYUUBI #1176][FOLLOWUP] change configuration(ha.zookeeper.acl.engine.enabled) version
547b270 is described below

commit 547b270f0e14088c6f6363ef737a5841f052d4fd
Author: sychen <sy...@trip.com>
AuthorDate: Fri Oct 8 16:56:15 2021 +0800

    [KYUUBI #1176][FOLLOWUP] change configuration(ha.zookeeper.acl.engine.enabled) version
    
    https://github.com/apache/incubator-kyuubi/pull/1177
    ### _Why are the changes needed?_
    change configuration(ha.zookeeper.acl.engine.enabled) version to `1.3.1`
    
    ### _How was this patch tested?_
    - [] Add some test cases that check the changes thoroughly including negative and positive cases if possible
    
    - [] Add screenshots for manual tests if appropriate
    
    - [] [Run test](https://kyuubi.readthedocs.io/en/latest/develop_tools/testing.html#running-tests) locally before make a pull request
    
    Closes #1193 from cxzl25/KYUUBI-1176-followup.
    
    Closes #1176
    
    72753ae5 [sychen] change config version
    
    Authored-by: sychen <sy...@trip.com>
    Signed-off-by: ulysses-you <ul...@apache.org>
    (cherry picked from commit 464fdf456bdcaa9fd65d6965926bf32809eecfad)
    Signed-off-by: ulysses-you <ul...@apache.org>
---
 docs/deployment/settings.md                                             | 2 +-
 .../src/main/scala/org/apache/kyuubi/ha/HighAvailabilityConf.scala      | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/deployment/settings.md b/docs/deployment/settings.md
index cb1679f..4779dbd 100644
--- a/docs/deployment/settings.md
+++ b/docs/deployment/settings.md
@@ -192,7 +192,7 @@ kyuubi\.frontend<br>\.worker\.keepalive\.time|<div style='width: 65pt;word-wrap:
 Key | Default | Meaning | Type | Since
 --- | --- | --- | --- | ---
 kyuubi\.ha\.zookeeper<br>\.acl\.enabled|<div style='width: 65pt;word-wrap: break-word;white-space: normal'>false</div>|<div style='width: 170pt;word-wrap: break-word;white-space: normal'>Set to true if the zookeeper ensemble is kerberized</div>|<div style='width: 30pt'>boolean</div>|<div style='width: 20pt'>1.0.0</div>
-kyuubi\.ha\.zookeeper<br>\.acl\.engine\.enabled|<div style='width: 65pt;word-wrap: break-word;white-space: normal'>false</div>|<div style='width: 170pt;word-wrap: break-word;white-space: normal'>Set to true if the zookeeper ensemble is kerberized at engine side.</div>|<div style='width: 30pt'>boolean</div>|<div style='width: 20pt'>1.4.0</div>
+kyuubi\.ha\.zookeeper<br>\.acl\.engine\.enabled|<div style='width: 65pt;word-wrap: break-word;white-space: normal'>false</div>|<div style='width: 170pt;word-wrap: break-word;white-space: normal'>Set to true if the zookeeper ensemble is kerberized at engine side.</div>|<div style='width: 30pt'>boolean</div>|<div style='width: 20pt'>1.3.1</div>
 kyuubi\.ha\.zookeeper<br>\.connection\.base\.retry<br>\.wait|<div style='width: 65pt;word-wrap: break-word;white-space: normal'>1000</div>|<div style='width: 170pt;word-wrap: break-word;white-space: normal'>Initial amount of time to wait between retries to the zookeeper ensemble</div>|<div style='width: 30pt'>int</div>|<div style='width: 20pt'>1.0.0</div>
 kyuubi\.ha\.zookeeper<br>\.connection\.max<br>\.retries|<div style='width: 65pt;word-wrap: break-word;white-space: normal'>3</div>|<div style='width: 170pt;word-wrap: break-word;white-space: normal'>Max retry times for connecting to the zookeeper ensemble</div>|<div style='width: 30pt'>int</div>|<div style='width: 20pt'>1.0.0</div>
 kyuubi\.ha\.zookeeper<br>\.connection\.max\.retry<br>\.wait|<div style='width: 65pt;word-wrap: break-word;white-space: normal'>30000</div>|<div style='width: 170pt;word-wrap: break-word;white-space: normal'>Max amount of time to wait between retries for BOUNDED_EXPONENTIAL_BACKOFF policy can reach, or max time until elapsed for UNTIL_ELAPSED policy to connect the zookeeper ensemble</div>|<div style='width: 30pt'>int</div>|<div style='width: 20pt'>1.0.0</div>
diff --git a/kyuubi-ha/src/main/scala/org/apache/kyuubi/ha/HighAvailabilityConf.scala b/kyuubi-ha/src/main/scala/org/apache/kyuubi/ha/HighAvailabilityConf.scala
index 932c255..1a5d2d4 100644
--- a/kyuubi-ha/src/main/scala/org/apache/kyuubi/ha/HighAvailabilityConf.scala
+++ b/kyuubi-ha/src/main/scala/org/apache/kyuubi/ha/HighAvailabilityConf.scala
@@ -51,7 +51,7 @@ object HighAvailabilityConf {
   val HA_ZK_ACL_ENGINE_ENABLED: ConfigEntry[Boolean] =
     buildConf("ha.zookeeper.acl.engine.enabled")
       .doc("Set to true if the zookeeper ensemble is kerberized at engine side.")
-      .version("1.4.0")
+      .version("1.3.1")
       .booleanConf
       .createWithDefault(false)