You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dolphinscheduler.apache.org by ki...@apache.org on 2021/07/04 14:14:37 UTC

[dolphinscheduler-website] branch master updated: Update registry_spi.md (#395)

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

kirs pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/dolphinscheduler-website.git


The following commit(s) were added to refs/heads/master by this push:
     new de1b458  Update registry_spi.md (#395)
de1b458 is described below

commit de1b45818d091e15d5e564fe85f6ead1d0830bc0
Author: QuakeWang <45...@users.noreply.github.com>
AuthorDate: Sun Jul 4 22:14:30 2021 +0800

    Update registry_spi.md (#395)
---
 docs/zh-cn/dev/user_doc/registry_spi.md | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/docs/zh-cn/dev/user_doc/registry_spi.md b/docs/zh-cn/dev/user_doc/registry_spi.md
index af55f2c..c5bfa4b 100644
--- a/docs/zh-cn/dev/user_doc/registry_spi.md
+++ b/docs/zh-cn/dev/user_doc/registry_spi.md
@@ -1,27 +1,27 @@
 ### DolphinScheduler Registry SPI 主要设计
 
 #### 如何使用?
-首先你需要执行maven install 安装插件,生成注册中心的插件jar。目录是:dolphinscheduler-dist/target/dolphinscheduler-dist-1.3.6-SNAPSHOT/lib/plugin/registry
+首先你需要执行 mvn install 安装插件,生成注册中心的插件 jar。目录是:dolphinscheduler-dist/target/dolphinscheduler-dist-1.3.6-SNAPSHOT/lib/plugin/registry
 
-其次进行以下配置(以zookeeper 为例)
+其次进行以下配置(以 zookeeper 为例)
 
 |参数 |默认值| 描述|
 |--|--|--|
-zookeeper.quorum|localhost:2181| zk集群连接信息
-registry.plugin.dir|/Users/kris/workspaces/incubator-dolphinscheduler/dolphinscheduler-dist/target/dolphinscheduler-dist-1.3.6-SNAPSHOT/lib/plugin/registry/zookeeper | 注册中心插件目录
+zookeeper.quorum|localhost:2181| zk 集群连接信息
+registry.plugin.dir|/Users/用户名/workspaces/dolphinscheduler/dolphinscheduler-dist/target/dolphinscheduler-dist-1.3.6-SNAPSHOT/lib/plugin/registry/zookeeper | 注册中心插件目录
 registry.plugin.name|zookeeper|注册中心具体插件名称
-registry.plugin.binding|registry|DolphinScheduler插件类别
-registry.servers|127.0.0.1:2181|zk连接地址
+registry.plugin.binding|registry|DolphinScheduler 插件类别
+registry.servers|127.0.0.1:2181|zk 连接地址
 
-具体配置信息请参考具体插件提供的参数信息,例如zk:org/apache/dolphinscheduler/plugin/registry/zookeeper/ZookeeperConfiguration.java
-所有配置信息前缀需要+registry,如 base.sleep.time.ms,在registry中应该这样配置:registry.base.sleep.time.ms=100
+具体配置信息请参考具体插件提供的参数信息,例如 zk:org/apache/dolphinscheduler/plugin/registry/zookeeper/ZookeeperConfiguration.java
+所有配置信息前缀需要 +registry,如 base.sleep.time.ms,在 registry 中应该这样配置:registry.base.sleep.time.ms=100
 
 
 #### FAQ
 1: not found registry plugin
 
-请检查是否有执行 mvn install,此外,请检查 配置文件中的 registry.plugin.dir 中配置的目录是否有相关插件。
+请检查是否有执行 mvn install,此外,请检查配置文件中的 registry.plugin.dir 中配置的目录是否有相关插件。
 
 2:registry connect timeout
 
-可以增加相关超时参数。
\ No newline at end of file
+可以增加相关超时参数。