Skip to content

Commit b862221

Browse files
[KYUUBI #7348] Fix spacing between sentences
1 parent 20b6f0d commit b862221

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docs/configuration/settings.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -331,8 +331,8 @@ You can configure the Kyuubi properties in `$KYUUBI_HOME/conf/kyuubi-defaults.co
331331
| 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 |
332332
| kyuubi.ha.zookeeper.connection.retry.policy | EXPONENTIAL_BACKOFF | The retry policy for connecting to the ZooKeeper ensemble, all candidates are: <ul><li>ONE_TIME</li><li> N_TIME</li><li> EXPONENTIAL_BACKOFF</li><li> BOUNDED_EXPONENTIAL_BACKOFF</li><li> UNTIL_ELAPSED</li></ul> | string | 1.0.0 |
333333
| kyuubi.ha.zookeeper.connection.timeout | 15000 | The timeout(ms) of creating the connection to the ZooKeeper ensemble | int | 1.0.0 |
334-
| kyuubi.ha.zookeeper.engine.auth.keytab | &lt;undefined&gt; | Location of the Kyuubi server's keytab that is used for the engine's ZooKeeper authentication.It fallback to `kyuubi.ha.zookeeper.auth.keytab` | string | 1.12.0 |
335-
| kyuubi.ha.zookeeper.engine.auth.principal | &lt;undefined&gt; | Kerberos principal name that is used for the engine's ZooKeeper authentication.It fallback to `kyuubi.ha.zookeeper.auth.principal` | string | 1.12.0 |
334+
| kyuubi.ha.zookeeper.engine.auth.keytab | &lt;undefined&gt; | Location of the Kyuubi server's keytab that is used for the engine's ZooKeeper authentication. It fallback to `kyuubi.ha.zookeeper.auth.keytab` | string | 1.12.0 |
335+
| kyuubi.ha.zookeeper.engine.auth.principal | &lt;undefined&gt; | Kerberos principal name that is used for the engine's ZooKeeper authentication. It fallback to `kyuubi.ha.zookeeper.auth.principal` | string | 1.12.0 |
336336
| kyuubi.ha.zookeeper.engine.auth.type | NONE | The type of ZooKeeper authentication for the engine, all candidates are <ul><li>NONE</li><li> KERBEROS</li><li> DIGEST</li></ul> | string | 1.3.2 |
337337
| kyuubi.ha.zookeeper.namespace | kyuubi | (deprecated) The root directory for the service to deploy its instance uri | string | 1.0.0 |
338338
| kyuubi.ha.zookeeper.node.creation.timeout | PT2M | Timeout for creating ZooKeeper node | duration | 1.2.0 |

kyuubi-ha/src/main/scala/org/apache/kyuubi/ha/HighAvailabilityConf.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ object HighAvailabilityConf {
108108

109109
val HA_ZK_ENGINE_AUTH_PRINCIPAL: ConfigEntry[Option[String]] =
110110
buildConf("kyuubi.ha.zookeeper.engine.auth.principal")
111-
.doc("Kerberos principal name that is used for the engine's ZooKeeper authentication." +
111+
.doc("Kerberos principal name that is used for the engine's ZooKeeper authentication. " +
112112
"It fallback to `kyuubi.ha.zookeeper.auth.principal`")
113113
.version("1.12.0")
114114
.fallbackConf(HighAvailabilityConf.HA_ZK_AUTH_PRINCIPAL)
@@ -122,7 +122,7 @@ object HighAvailabilityConf {
122122
val HA_ZK_ENGINE_AUTH_KEYTAB: ConfigEntry[Option[String]] =
123123
buildConf("kyuubi.ha.zookeeper.engine.auth.keytab")
124124
.doc("Location of the Kyuubi server's keytab that is used for " +
125-
"the engine's ZooKeeper authentication." +
125+
"the engine's ZooKeeper authentication. " +
126126
"It fallback to `kyuubi.ha.zookeeper.auth.keytab`")
127127
.version("1.12.0")
128128
.fallbackConf(HighAvailabilityConf.HA_ZK_AUTH_KEYTAB)

0 commit comments

Comments
 (0)