From 464fdf456bdcaa9fd65d6965926bf32809eecfad Mon Sep 17 00:00:00 2001 From: sychen Date: Fri, 8 Oct 2021 16:56:15 +0800 Subject: [PATCH] [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 Signed-off-by: ulysses-you --- docs/deployment/settings.md | 2 +- .../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 7669b12eb..40ce90015 100644 --- a/docs/deployment/settings.md +++ b/docs/deployment/settings.md @@ -221,7 +221,7 @@ kyuubi\.frontend
\.worker\.keepalive\.time|
false
|
Set to true if the zookeeper ensemble is kerberized
|
boolean
|
1.0.0
-kyuubi\.ha\.zookeeper
\.acl\.engine\.enabled|
false
|
Set to true if the zookeeper ensemble is kerberized at engine side.
|
boolean
|
1.4.0
+kyuubi\.ha\.zookeeper
\.acl\.engine\.enabled|
false
|
Set to true if the zookeeper ensemble is kerberized at engine side.
|
boolean
|
1.3.1
kyuubi\.ha\.zookeeper
\.connection\.base\.retry
\.wait|
1000
|
Initial amount of time to wait between retries to the zookeeper ensemble
|
int
|
1.0.0
kyuubi\.ha\.zookeeper
\.connection\.max
\.retries|
3
|
Max retry times for connecting to the zookeeper ensemble
|
int
|
1.0.0
kyuubi\.ha\.zookeeper
\.connection\.max\.retry
\.wait|
30000
|
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
|
int
|
1.0.0
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 17df7915f..1507c5c80 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)