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)