You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dolphinscheduler.apache.org by ch...@apache.org on 2022/08/30 13:07:14 UTC

[dolphinscheduler] branch dev updated: [DOC] improve zk digest doc (#11703)

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

chufenggao pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/dolphinscheduler.git


The following commit(s) were added to refs/heads/dev by this push:
     new 5fabce783a [DOC] improve zk digest doc (#11703)
5fabce783a is described below

commit 5fabce783a7e90b834d9842eebc4a20da6198a0e
Author: Evans Sun <ab...@gmail.com>
AuthorDate: Tue Aug 30 21:07:04 2022 +0800

    [DOC] improve zk digest doc (#11703)
---
 docs/docs/en/architecture/configuration.md | 2 +-
 docs/docs/zh/architecture/configuration.md | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/docs/en/architecture/configuration.md b/docs/docs/en/architecture/configuration.md
index d951b44c9a..48d8aa80ab 100644
--- a/docs/docs/en/architecture/configuration.md
+++ b/docs/docs/en/architecture/configuration.md
@@ -173,7 +173,7 @@ The default configuration is as follows:
 |registry.zookeeper.session-timeout|30s|session timeout|
 |registry.zookeeper.connection-timeout|30s|connection timeout|
 |registry.zookeeper.block-until-connected|600ms|waiting time to block until the connection succeeds|
-|registry.zookeeper.digest|~|digest of zookeeper|
+|registry.zookeeper.digest|{username}:{password}|digest of zookeeper to access znode, works only when acl is enabled, for more details please check [https://zookeeper.apache.org/doc/r3.4.14/zookeeperAdmin.html](Apache Zookeeper doc) |
 
 Note that DolphinScheduler also supports zookeeper related configuration through `bin/env/dolphinscheduler_env.sh`.
 
diff --git a/docs/docs/zh/architecture/configuration.md b/docs/docs/zh/architecture/configuration.md
index 5467bcf9a3..9e18e7832d 100644
--- a/docs/docs/zh/architecture/configuration.md
+++ b/docs/docs/zh/architecture/configuration.md
@@ -165,7 +165,7 @@ DolphinScheduler使用Zookeeper进行集群管理、容错、事件监听等功
 |registry.zookeeper.session-timeout|30s|session超时时间|
 |registry.zookeeper.connection-timeout|30s|连接超时时间|
 |registry.zookeeper.block-until-connected|600ms|阻塞直到连接成功的等待时间|
-|registry.zookeeper.digest|~|Zookeeper使用的digest|
+|registry.zookeeper.digest|{用户名:密码}|如果zookeeper打开了acl,则需要填写认证信息访问znode,认证信息格式为{用户名}:{密码}。关于Zookeeper ACL详见[https://zookeeper.apache.org/doc/r3.4.14/zookeeperAdmin.html](Apache Zookeeper官方文档)|
 
 DolphinScheduler同样可以通过`bin/env/dolphinscheduler_env.sh`进行Zookeeper相关的配置。