You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dubbo.apache.org by gi...@apache.org on 2019/11/07 02:48:09 UTC

[dubbo-website] branch asf-site updated: Automated deployment: Thu Nov 7 02:48:02 UTC 2019 ed9244425cd7f60da28b7cc61cc7cade23ab76e8

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

github-bot pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/dubbo-website.git


The following commit(s) were added to refs/heads/asf-site by this push:
     new 259ae8d  Automated deployment: Thu Nov  7 02:48:02 UTC 2019 ed9244425cd7f60da28b7cc61cc7cade23ab76e8
259ae8d is described below

commit 259ae8d39a2d6872ba3495a47a6bab329fef99bc
Author: lexburner <le...@users.noreply.github.com>
AuthorDate: Thu Nov 7 02:48:02 2019 +0000

    Automated deployment: Thu Nov  7 02:48:02 UTC 2019 ed9244425cd7f60da28b7cc61cc7cade23ab76e8
---
 zh-cn/docs/user/references/registry/zookeeper.html | 4 ++--
 zh-cn/docs/user/references/registry/zookeeper.json | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/zh-cn/docs/user/references/registry/zookeeper.html b/zh-cn/docs/user/references/registry/zookeeper.html
index 7af23f7..336c4e8 100644
--- a/zh-cn/docs/user/references/registry/zookeeper.html
+++ b/zh-cn/docs/user/references/registry/zookeeper.html
@@ -28,7 +28,7 @@
 <li>当会话过期时,能自动恢复注册数据,以及订阅请求</li>
 <li>当设置 <code>&lt;dubbo:registry check=&quot;false&quot; /&gt;</code> 时,记录失败注册和订阅请求,后台定时重试</li>
 <li>可通过 <code>&lt;dubbo:registry username=&quot;admin&quot; password=&quot;1234&quot; /&gt;</code> 设置 zookeeper 登录信息</li>
-<li>可通过 <code>&lt;dubbo:registry group=&quot;dubbo&quot; /&gt;</code> 设置 zookeeper 的根节点,不设置将使用无根树</li>
+<li>可通过 <code>&lt;dubbo:registry group=&quot;dubbo&quot; /&gt;</code> 设置 zookeeper 的根节点,不配置将使用默认的根节点。</li>
 <li>支持 <code>*</code> 号通配符 <code>&lt;dubbo:reference group=&quot;*&quot; version=&quot;*&quot; /&gt;</code>,可订阅服务的所有分组和所有版本的提供者</li>
 </ul>
 <h2>使用</h2>
@@ -96,7 +96,7 @@
 <span class="hljs-tag">&lt;<span class="hljs-name">dubbo:registry</span> <span class="hljs-attr">id</span>=<span class="hljs-string">"intlRegistry"</span> <span class="hljs-attr">protocol</span>=<span class="hljs-string">"zookeeper"</span> <span class="hljs-attr">address</span>=<span class="hljs-string">"10.20.153.10:2181"</span> <span class="hljs-attr">group</span>=<span class="hljs-string">"intl"</span> /&gt;</span>
 </code></pre>
 <h2>zookeeper 安装</h2>
-<p>安装方式参见: <a href="../../../admin/install/zookeeper.md">Zookeeper安装手册</a>,只需搭一个原生的 Zookeeper 服务器,并将 <a href="../../preface/usage.md">Quick Start</a> 中 Provider 和 Consumer 里的 <code>conf/dubbo.properties</code> 中的 <code>dubbo.registry.addrss</code> 的值改为 <code>zookeeper://127.0.0.1:2181</code> 即可使用。</p>
+<p>安装方式参见: <a href="../../../admin/install/zookeeper.md">Zookeeper安装手册</a>,只需搭一个原生的 Zookeeper 服务器,并将 <a href="../../preface/usage.md">Quick Start</a> 中 Provider 和 Consumer 里的 <code>conf/dubbo.properties</code> 中的 <code>dubbo.registry.address</code> 的值改为 <code>zookeeper://127.0.0.1:2181</code> 即可使用。</p>
 <h2>可靠性声明</h2>
 <p>阿里内部并没有采用 Zookeeper 做为注册中心,而是使用自己实现的基于数据库的注册中心,即:Zookeeper 注册中心并没有在阿里内部长时间运行的可靠性保障,此 Zookeeper 桥接实现只为开源版本提供,其可靠性依赖于 Zookeeper 本身的可靠性。</p>
 <h2>兼容性声明</h2>
diff --git a/zh-cn/docs/user/references/registry/zookeeper.json b/zh-cn/docs/user/references/registry/zookeeper.json
index 331be36..1a182cd 100644
--- a/zh-cn/docs/user/references/registry/zookeeper.json
+++ b/zh-cn/docs/user/references/registry/zookeeper.json
@@ -1,6 +1,6 @@
 {
   "filename": "zookeeper.md",
-  "__html": "<h1>zookeeper 注册中心</h1>\n<p><a href=\"http://zookeeper.apache.org\">Zookeeper</a> 是 Apacahe Hadoop 的子项目,是一个树型的目录服务,支持变更推送,适合作为 Dubbo 服务的注册中心,工业强度较高,可用于生产环境,并推荐使用 <sup class=\"footnote-ref\"><a href=\"#fn1\" id=\"fnref1\">[1]</a></sup>。</p>\n<p><img src=\"../../sources/images/zookeeper.jpg\" alt=\"/user-guide/images/zookeeper.jpg\"></p>\n<p>流程说明:</p>\n<ul>\n<li>服务提供者启动时: 向 <code>/dubbo/com.foo.BarService/providers</code> 目录下写入自己的 URL 地址</li>\n<li>服务消费者启动时: 订阅 <code>/dubbo/com [...]
+  "__html": "<h1>zookeeper 注册中心</h1>\n<p><a href=\"http://zookeeper.apache.org\">Zookeeper</a> 是 Apacahe Hadoop 的子项目,是一个树型的目录服务,支持变更推送,适合作为 Dubbo 服务的注册中心,工业强度较高,可用于生产环境,并推荐使用 <sup class=\"footnote-ref\"><a href=\"#fn1\" id=\"fnref1\">[1]</a></sup>。</p>\n<p><img src=\"../../sources/images/zookeeper.jpg\" alt=\"/user-guide/images/zookeeper.jpg\"></p>\n<p>流程说明:</p>\n<ul>\n<li>服务提供者启动时: 向 <code>/dubbo/com.foo.BarService/providers</code> 目录下写入自己的 URL 地址</li>\n<li>服务消费者启动时: 订阅 <code>/dubbo/com [...]
   "link": "/zh-cn/docs/user/references/registry/zookeeper.html",
   "meta": {}
 }
\ No newline at end of file