You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@rocketmq.apache.org by GitBox <gi...@apache.org> on 2022/10/13 13:58:00 UTC

[GitHub] [rocketmq-site] mxsm opened a new pull request, #336: [ISSUE #291]Add Translation for "Dledger" Section in the v4.x & 5.0 Document (CN -> EN)

mxsm opened a new pull request, #336:
URL: https://github.com/apache/rocketmq-site/pull/336

   Please do not create a Pull Request without creating an issue first. 
   
   ## What is the purpose of the change
   
   close #291 
   
   ## Brief changelog
   
   - Add Translation for "Dledger" Section in the v4.x & 5.0 Document (CN -> EN)
   
   ## Verifying this change
   
   XXXX
   
   Follow this checklist to help us incorporate your contribution quickly and easily:
   
   - [x] Make sure there is a Github issue filed for the change (usually before you start working on it). Trivial changes like typos do not require a Github issue. Your pull request should address just this issue, without pulling in other changes - one PR resolves one issue. 
   - [ ] Format the pull request title like `[ISSUE #123] Fix UnknownException when host config not exist`. Each commit in the pull request should have a meaningful subject line and body.
   - [ ] Write a pull request description that is detailed enough to understand what the pull request does, how, and why.
   - [ ] Write necessary unit-test to verify your logic correction, more mock a little better when cross module dependency exist. If the new feature or significant change is committed, please remember to add integration-test in [test module](https://github.com/apache/rocketmq/tree/master/test).
   - [ ] Run `mvn -B clean apache-rat:check findbugs:findbugs checkstyle:checkstyle` to make sure basic checks pass. Run `mvn clean install -DskipITs` to make sure unit-test pass. Run `mvn clean test-compile failsafe:integration-test`  to make sure integration-test pass.
   - [ ] If this contribution is large, please file an [Apache Individual Contributor License Agreement](http://www.apache.org/licenses/#clas).
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscribe@rocketmq.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [rocketmq-site] mxsm commented on a diff in pull request #336: [ISSUE #291]Add Translation for "Dledger" Section in the v4.x & 5.0 Document (CN -> EN)

Posted by GitBox <gi...@apache.org>.
mxsm commented on code in PR #336:
URL: https://github.com/apache/rocketmq-site/pull/336#discussion_r996582084


##########
i18n/en/docusaurus-plugin-content-docs/version-5.0/06-最佳实践/16dledger.md:
##########
@@ -1,83 +1,91 @@
-# Dledger
-## Dledger快速搭建
-### 前言
-DLedger是一套基于Raft协议的分布式日志存储组件,部署 RocketMQ 时可以根据需要选择使用DLeger来替换原生的副本存储机制。本文档主要介绍如何快速构建和部署基于 DLedger 的可以自动容灾切换的 RocketMQ 集群。
+# DLedger
 
-### 1. 源码构建
-构建分为两个部分,需要先构建 DLedger,然后 构建 RocketMQ。
+## DLedger Quick Deployment
 
-#### 1.1 构建 DLedger
+### Preface
+DLedger is a set of distributed log storage components based on Raft protocol. When deploying RocketMQ, you can choose to use DLeger to replace the native replica storage mechanism. This document is mainly introduced for how to build and deploy auto failover RocketMQ cluster based on DLedger.
+
+### 1. Build from source code
+Build phase contains two parts, first, build DLedger, then build RocketMQ.
+
+#### 1.1 Build DLedger
 
 ```shell
-git clone https://github.com/openmessaging/openmessaging-storage-dledger.git
-cd openmessaging-storage-dledger
-mvn clean install -DskipTests
+$ git clone https://github.com/openmessaging/dledger.git
+$ cd dledger
+$ mvn clean install -DskipTests
 ```
 
-#### 1.2 构建 RocketMQ
+#### 1.2 Build RocketMQ
+
 ```shell
-git clone https://github.com/apache/rocketmq.git
-cd rocketmq
-git checkout -b store_with_dledger origin/store_with_dledger
-mvn -Prelease-all -DskipTests clean install -U
+$ git clone https://github.com/apache/rocketmq.git
+$ cd rocketmq
+$ git checkout -b store_with_dledger origin/store_with_dledger
+$ mvn -Prelease-all -DskipTests clean install -U
 ```
-### 2. 快速部署
 
-在构建成功后
-```shell
-cd distribution/target/apache-rocketmq
+### 2. Quick Deployment
+
+after build successful
 
-sh bin/dledger/fast-try.sh start
+```shell
+#{rocketmq-version} replace with rocketmq actual version. example: 5.0.0-SNAPSHOT
+$ cd distribution/target/rocketmq-{rocketmq-version}/rocketmq-{rocketmq-version}
+$ sh bin/dledger/fast-try.sh start
 ```
 
-如果上面的步骤执行成功,可以通过 mqadmin 运维命令查看集群状态。
+if the above commands executed successfully, then check cluster status by using mqadmin operation commands.
+
 ```shell
-sh bin/mqadmin clusterList -n 127.0.0.1:9876
+$ sh bin/mqadmin clusterList -n 127.0.0.1:9876
 ```
-顺利的话,会看到如下内容:
+
+If everything goes well, the following content will appear:
 
 ![ClusterList](https://img.alicdn.com/5476e8b07b923/TB11Z.ZyCzqK1RjSZFLXXcn2XXa)
 
-(BID 为 0 的表示 Master,其余都是 Follower)
+(BID is 0 indicate Master, the others are Follower)
+
+After startup successful, producer can produce message, and then test failover scenario.
 
-启动成功,现在可以向集群收发消息,并进行容灾切换测试了。
+Stop cluster fastly, execute the following command:
 
-关闭快速集群,可以执行:
 ```shell
-sh bin/dledger/fast-try.sh stop
+$ sh bin/dledger/fast-try.sh stop
 ```
-快速部署,默认配置在 conf/dledger 里面,默认的存储路径在 /tmp/rmqstore。
 
+Quick deployment, default configuration is in directory conf/dledger, default storage path is /tmp/rmqstore.
 
-### 3. 容灾切换
 
-部署成功,杀掉 Leader 之后(在上面的例子中,杀掉端口 30931 所在的进程),等待约 10s 左右,用 clusterList 命令查看集群,就会发现 Leader 切换到另一个节点了。
+### 3. Failover
 
+After successful deployment, kill Leader process(as the above example, kill process that binds port 30931), about 10 seconds elapses, use clusterList command check cluster's status, Leader switch to another node.

Review Comment:
   @tsunghanjacktsai  I will modify and resubmit this PR



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscribe@rocketmq.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [rocketmq-site] tsunghanjacktsai commented on a diff in pull request #336: [ISSUE #291]Add Translation for "Dledger" Section in the v4.x & 5.0 Document (CN -> EN)

Posted by GitBox <gi...@apache.org>.
tsunghanjacktsai commented on code in PR #336:
URL: https://github.com/apache/rocketmq-site/pull/336#discussion_r996571886


##########
i18n/en/docusaurus-plugin-content-docs/version-5.0/06-最佳实践/16dledger.md:
##########
@@ -1,83 +1,91 @@
-# Dledger
-## Dledger快速搭建
-### 前言
-DLedger是一套基于Raft协议的分布式日志存储组件,部署 RocketMQ 时可以根据需要选择使用DLeger来替换原生的副本存储机制。本文档主要介绍如何快速构建和部署基于 DLedger 的可以自动容灾切换的 RocketMQ 集群。
+# DLedger
 
-### 1. 源码构建
-构建分为两个部分,需要先构建 DLedger,然后 构建 RocketMQ。
+## DLedger Quick Deployment
 
-#### 1.1 构建 DLedger
+### Preface
+DLedger is a set of distributed log storage components based on Raft protocol. When deploying RocketMQ, you can choose to use DLeger to replace the native replica storage mechanism. This document is mainly introduced for how to build and deploy auto failover RocketMQ cluster based on DLedger.
+
+### 1. Build from source code
+Build phase contains two parts, first, build DLedger, then build RocketMQ.

Review Comment:
   The build phase is divided into two parts, DLedger should be built first, and then build RocketMQ.



##########
i18n/en/docusaurus-plugin-content-docs/version-5.0/06-最佳实践/16dledger.md:
##########
@@ -1,83 +1,91 @@
-# Dledger
-## Dledger快速搭建
-### 前言
-DLedger是一套基于Raft协议的分布式日志存储组件,部署 RocketMQ 时可以根据需要选择使用DLeger来替换原生的副本存储机制。本文档主要介绍如何快速构建和部署基于 DLedger 的可以自动容灾切换的 RocketMQ 集群。
+# DLedger
 
-### 1. 源码构建
-构建分为两个部分,需要先构建 DLedger,然后 构建 RocketMQ。
+## DLedger Quick Deployment
 
-#### 1.1 构建 DLedger
+### Preface
+DLedger is a set of distributed log storage components based on Raft protocol. When deploying RocketMQ, you can choose to use DLeger to replace the native replica storage mechanism. This document is mainly introduced for how to build and deploy auto failover RocketMQ cluster based on DLedger.
+
+### 1. Build from source code
+Build phase contains two parts, first, build DLedger, then build RocketMQ.
+
+#### 1.1 Build DLedger
 
 ```shell
-git clone https://github.com/openmessaging/openmessaging-storage-dledger.git
-cd openmessaging-storage-dledger
-mvn clean install -DskipTests
+$ git clone https://github.com/openmessaging/dledger.git
+$ cd dledger
+$ mvn clean install -DskipTests
 ```
 
-#### 1.2 构建 RocketMQ
+#### 1.2 Build RocketMQ
+
 ```shell
-git clone https://github.com/apache/rocketmq.git
-cd rocketmq
-git checkout -b store_with_dledger origin/store_with_dledger
-mvn -Prelease-all -DskipTests clean install -U
+$ git clone https://github.com/apache/rocketmq.git
+$ cd rocketmq
+$ git checkout -b store_with_dledger origin/store_with_dledger
+$ mvn -Prelease-all -DskipTests clean install -U
 ```
-### 2. 快速部署
 
-在构建成功后
-```shell
-cd distribution/target/apache-rocketmq
+### 2. Quick Deployment
+
+after build successful

Review Comment:
   After building successfully,



##########
i18n/en/docusaurus-plugin-content-docs/version-5.0/06-最佳实践/16dledger.md:
##########
@@ -1,83 +1,91 @@
-# Dledger
-## Dledger快速搭建
-### 前言
-DLedger是一套基于Raft协议的分布式日志存储组件,部署 RocketMQ 时可以根据需要选择使用DLeger来替换原生的副本存储机制。本文档主要介绍如何快速构建和部署基于 DLedger 的可以自动容灾切换的 RocketMQ 集群。
+# DLedger
 
-### 1. 源码构建
-构建分为两个部分,需要先构建 DLedger,然后 构建 RocketMQ。
+## DLedger Quick Deployment
 
-#### 1.1 构建 DLedger
+### Preface
+DLedger is a set of distributed log storage components based on Raft protocol. When deploying RocketMQ, you can choose to use DLeger to replace the native replica storage mechanism. This document is mainly introduced for how to build and deploy auto failover RocketMQ cluster based on DLedger.

Review Comment:
   DLeger -> DLedger



##########
i18n/en/docusaurus-plugin-content-docs/version-5.0/06-最佳实践/16dledger.md:
##########
@@ -1,83 +1,91 @@
-# Dledger
-## Dledger快速搭建
-### 前言
-DLedger是一套基于Raft协议的分布式日志存储组件,部署 RocketMQ 时可以根据需要选择使用DLeger来替换原生的副本存储机制。本文档主要介绍如何快速构建和部署基于 DLedger 的可以自动容灾切换的 RocketMQ 集群。
+# DLedger
 
-### 1. 源码构建
-构建分为两个部分,需要先构建 DLedger,然后 构建 RocketMQ。
+## DLedger Quick Deployment
 
-#### 1.1 构建 DLedger
+### Preface
+DLedger is a set of distributed log storage components based on Raft protocol. When deploying RocketMQ, you can choose to use DLeger to replace the native replica storage mechanism. This document is mainly introduced for how to build and deploy auto failover RocketMQ cluster based on DLedger.
+
+### 1. Build from source code
+Build phase contains two parts, first, build DLedger, then build RocketMQ.
+
+#### 1.1 Build DLedger
 
 ```shell
-git clone https://github.com/openmessaging/openmessaging-storage-dledger.git
-cd openmessaging-storage-dledger
-mvn clean install -DskipTests
+$ git clone https://github.com/openmessaging/dledger.git
+$ cd dledger
+$ mvn clean install -DskipTests
 ```
 
-#### 1.2 构建 RocketMQ
+#### 1.2 Build RocketMQ
+
 ```shell
-git clone https://github.com/apache/rocketmq.git
-cd rocketmq
-git checkout -b store_with_dledger origin/store_with_dledger
-mvn -Prelease-all -DskipTests clean install -U
+$ git clone https://github.com/apache/rocketmq.git
+$ cd rocketmq
+$ git checkout -b store_with_dledger origin/store_with_dledger
+$ mvn -Prelease-all -DskipTests clean install -U
 ```
-### 2. 快速部署
 
-在构建成功后
-```shell
-cd distribution/target/apache-rocketmq
+### 2. Quick Deployment
+
+after build successful
 
-sh bin/dledger/fast-try.sh start
+```shell
+#{rocketmq-version} replace with rocketmq actual version. example: 5.0.0-SNAPSHOT
+$ cd distribution/target/rocketmq-{rocketmq-version}/rocketmq-{rocketmq-version}
+$ sh bin/dledger/fast-try.sh start
 ```
 
-如果上面的步骤执行成功,可以通过 mqadmin 运维命令查看集群状态。
+if the above commands executed successfully, then check cluster status by using mqadmin operation commands.
+
 ```shell
-sh bin/mqadmin clusterList -n 127.0.0.1:9876
+$ sh bin/mqadmin clusterList -n 127.0.0.1:9876
 ```
-顺利的话,会看到如下内容:
+
+If everything goes well, the following content will appear:
 
 ![ClusterList](https://img.alicdn.com/5476e8b07b923/TB11Z.ZyCzqK1RjSZFLXXcn2XXa)
 
-(BID 为 0 的表示 Master,其余都是 Follower)
+(BID is 0 indicate Master, the others are Follower)
+
+After startup successful, producer can produce message, and then test failover scenario.
 
-启动成功,现在可以向集群收发消息,并进行容灾切换测试了。
+Stop cluster fastly, execute the following command:
 
-关闭快速集群,可以执行:
 ```shell
-sh bin/dledger/fast-try.sh stop
+$ sh bin/dledger/fast-try.sh stop
 ```
-快速部署,默认配置在 conf/dledger 里面,默认的存储路径在 /tmp/rmqstore。
 
+Quick deployment, default configuration is in directory conf/dledger, default storage path is /tmp/rmqstore.
 
-### 3. 容灾切换
 
-部署成功,杀掉 Leader 之后(在上面的例子中,杀掉端口 30931 所在的进程),等待约 10s 左右,用 clusterList 命令查看集群,就会发现 Leader 切换到另一个节点了。
+### 3. Failover
 
+After successful deployment, kill Leader process(as the above example, kill process that binds port 30931), about 10 seconds elapses, use clusterList command check cluster's status, Leader switch to another node.

Review Comment:
   After the successful deployment, kill the Leader process(as the above example, kill process that binds port 30931), then wait for 10 seconds, use clusterList command to check cluster status, and you could find that the Leader has been switched to another node.



##########
i18n/en/docusaurus-plugin-content-docs/version-5.0/06-最佳实践/16dledger.md:
##########
@@ -1,83 +1,91 @@
-# Dledger
-## Dledger快速搭建
-### 前言
-DLedger是一套基于Raft协议的分布式日志存储组件,部署 RocketMQ 时可以根据需要选择使用DLeger来替换原生的副本存储机制。本文档主要介绍如何快速构建和部署基于 DLedger 的可以自动容灾切换的 RocketMQ 集群。
+# DLedger
 
-### 1. 源码构建
-构建分为两个部分,需要先构建 DLedger,然后 构建 RocketMQ。
+## DLedger Quick Deployment
 
-#### 1.1 构建 DLedger
+### Preface
+DLedger is a set of distributed log storage components based on Raft protocol. When deploying RocketMQ, you can choose to use DLeger to replace the native replica storage mechanism. This document is mainly introduced for how to build and deploy auto failover RocketMQ cluster based on DLedger.
+
+### 1. Build from source code
+Build phase contains two parts, first, build DLedger, then build RocketMQ.
+
+#### 1.1 Build DLedger
 
 ```shell
-git clone https://github.com/openmessaging/openmessaging-storage-dledger.git
-cd openmessaging-storage-dledger
-mvn clean install -DskipTests
+$ git clone https://github.com/openmessaging/dledger.git
+$ cd dledger
+$ mvn clean install -DskipTests
 ```
 
-#### 1.2 构建 RocketMQ
+#### 1.2 Build RocketMQ
+
 ```shell
-git clone https://github.com/apache/rocketmq.git
-cd rocketmq
-git checkout -b store_with_dledger origin/store_with_dledger
-mvn -Prelease-all -DskipTests clean install -U
+$ git clone https://github.com/apache/rocketmq.git
+$ cd rocketmq
+$ git checkout -b store_with_dledger origin/store_with_dledger
+$ mvn -Prelease-all -DskipTests clean install -U
 ```
-### 2. 快速部署
 
-在构建成功后
-```shell
-cd distribution/target/apache-rocketmq
+### 2. Quick Deployment
+
+after build successful
 
-sh bin/dledger/fast-try.sh start
+```shell
+#{rocketmq-version} replace with rocketmq actual version. example: 5.0.0-SNAPSHOT
+$ cd distribution/target/rocketmq-{rocketmq-version}/rocketmq-{rocketmq-version}
+$ sh bin/dledger/fast-try.sh start
 ```
 
-如果上面的步骤执行成功,可以通过 mqadmin 运维命令查看集群状态。
+if the above commands executed successfully, then check cluster status by using mqadmin operation commands.
+
 ```shell
-sh bin/mqadmin clusterList -n 127.0.0.1:9876
+$ sh bin/mqadmin clusterList -n 127.0.0.1:9876
 ```
-顺利的话,会看到如下内容:
+
+If everything goes well, the following content will appear:
 
 ![ClusterList](https://img.alicdn.com/5476e8b07b923/TB11Z.ZyCzqK1RjSZFLXXcn2XXa)
 
-(BID 为 0 的表示 Master,其余都是 Follower)
+(BID is 0 indicate Master, the others are Follower)
+
+After startup successful, producer can produce message, and then test failover scenario.
 
-启动成功,现在可以向集群收发消息,并进行容灾切换测试了。
+Stop cluster fastly, execute the following command:

Review Comment:
   Execute the following command to stop the cluster quickly:



##########
i18n/en/docusaurus-plugin-content-docs/version-5.0/06-最佳实践/16dledger.md:
##########
@@ -1,83 +1,91 @@
-# Dledger
-## Dledger快速搭建
-### 前言
-DLedger是一套基于Raft协议的分布式日志存储组件,部署 RocketMQ 时可以根据需要选择使用DLeger来替换原生的副本存储机制。本文档主要介绍如何快速构建和部署基于 DLedger 的可以自动容灾切换的 RocketMQ 集群。
+# DLedger
 
-### 1. 源码构建
-构建分为两个部分,需要先构建 DLedger,然后 构建 RocketMQ。
+## DLedger Quick Deployment
 
-#### 1.1 构建 DLedger
+### Preface
+DLedger is a set of distributed log storage components based on Raft protocol. When deploying RocketMQ, you can choose to use DLeger to replace the native replica storage mechanism. This document is mainly introduced for how to build and deploy auto failover RocketMQ cluster based on DLedger.
+
+### 1. Build from source code
+Build phase contains two parts, first, build DLedger, then build RocketMQ.
+
+#### 1.1 Build DLedger
 
 ```shell
-git clone https://github.com/openmessaging/openmessaging-storage-dledger.git
-cd openmessaging-storage-dledger
-mvn clean install -DskipTests
+$ git clone https://github.com/openmessaging/dledger.git
+$ cd dledger
+$ mvn clean install -DskipTests
 ```
 
-#### 1.2 构建 RocketMQ
+#### 1.2 Build RocketMQ
+
 ```shell
-git clone https://github.com/apache/rocketmq.git
-cd rocketmq
-git checkout -b store_with_dledger origin/store_with_dledger
-mvn -Prelease-all -DskipTests clean install -U
+$ git clone https://github.com/apache/rocketmq.git
+$ cd rocketmq
+$ git checkout -b store_with_dledger origin/store_with_dledger
+$ mvn -Prelease-all -DskipTests clean install -U
 ```
-### 2. 快速部署
 
-在构建成功后
-```shell
-cd distribution/target/apache-rocketmq
+### 2. Quick Deployment
+
+after build successful
 
-sh bin/dledger/fast-try.sh start
+```shell
+#{rocketmq-version} replace with rocketmq actual version. example: 5.0.0-SNAPSHOT
+$ cd distribution/target/rocketmq-{rocketmq-version}/rocketmq-{rocketmq-version}
+$ sh bin/dledger/fast-try.sh start
 ```
 
-如果上面的步骤执行成功,可以通过 mqadmin 运维命令查看集群状态。
+if the above commands executed successfully, then check cluster status by using mqadmin operation commands.

Review Comment:
   if -> If



##########
i18n/en/docusaurus-plugin-content-docs/version-5.0/06-最佳实践/16dledger.md:
##########
@@ -1,83 +1,91 @@
-# Dledger
-## Dledger快速搭建
-### 前言
-DLedger是一套基于Raft协议的分布式日志存储组件,部署 RocketMQ 时可以根据需要选择使用DLeger来替换原生的副本存储机制。本文档主要介绍如何快速构建和部署基于 DLedger 的可以自动容灾切换的 RocketMQ 集群。
+# DLedger
 
-### 1. 源码构建
-构建分为两个部分,需要先构建 DLedger,然后 构建 RocketMQ。
+## DLedger Quick Deployment
 
-#### 1.1 构建 DLedger
+### Preface
+DLedger is a set of distributed log storage components based on Raft protocol. When deploying RocketMQ, you can choose to use DLeger to replace the native replica storage mechanism. This document is mainly introduced for how to build and deploy auto failover RocketMQ cluster based on DLedger.
+
+### 1. Build from source code
+Build phase contains two parts, first, build DLedger, then build RocketMQ.
+
+#### 1.1 Build DLedger
 
 ```shell
-git clone https://github.com/openmessaging/openmessaging-storage-dledger.git
-cd openmessaging-storage-dledger
-mvn clean install -DskipTests
+$ git clone https://github.com/openmessaging/dledger.git
+$ cd dledger
+$ mvn clean install -DskipTests
 ```
 
-#### 1.2 构建 RocketMQ
+#### 1.2 Build RocketMQ
+
 ```shell
-git clone https://github.com/apache/rocketmq.git
-cd rocketmq
-git checkout -b store_with_dledger origin/store_with_dledger
-mvn -Prelease-all -DskipTests clean install -U
+$ git clone https://github.com/apache/rocketmq.git
+$ cd rocketmq
+$ git checkout -b store_with_dledger origin/store_with_dledger
+$ mvn -Prelease-all -DskipTests clean install -U
 ```
-### 2. 快速部署
 
-在构建成功后
-```shell
-cd distribution/target/apache-rocketmq
+### 2. Quick Deployment
+
+after build successful
 
-sh bin/dledger/fast-try.sh start
+```shell
+#{rocketmq-version} replace with rocketmq actual version. example: 5.0.0-SNAPSHOT
+$ cd distribution/target/rocketmq-{rocketmq-version}/rocketmq-{rocketmq-version}
+$ sh bin/dledger/fast-try.sh start
 ```
 
-如果上面的步骤执行成功,可以通过 mqadmin 运维命令查看集群状态。
+if the above commands executed successfully, then check cluster status by using mqadmin operation commands.
+
 ```shell
-sh bin/mqadmin clusterList -n 127.0.0.1:9876
+$ sh bin/mqadmin clusterList -n 127.0.0.1:9876
 ```
-顺利的话,会看到如下内容:
+
+If everything goes well, the following content will appear:
 
 ![ClusterList](https://img.alicdn.com/5476e8b07b923/TB11Z.ZyCzqK1RjSZFLXXcn2XXa)
 
-(BID 为 0 的表示 Master,其余都是 Follower)
+(BID is 0 indicate Master, the others are Follower)
+
+After startup successful, producer can produce message, and then test failover scenario.

Review Comment:
   After the startup is successful



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscribe@rocketmq.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [rocketmq-site] mxsm closed pull request #336: [ISSUE #291]Add Translation for "Dledger" Section in the v4.x & 5.0 Document (CN -> EN)

Posted by GitBox <gi...@apache.org>.
mxsm closed pull request #336: [ISSUE #291]Add Translation for "Dledger" Section in the v4.x & 5.0 Document (CN -> EN)
URL: https://github.com/apache/rocketmq-site/pull/336


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@rocketmq.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [rocketmq-site] RongtongJin merged pull request #336: [ISSUE #291]Add Translation for "Dledger" Section in the v4.x & 5.0 Document (CN -> EN)

Posted by "RongtongJin (via GitHub)" <gi...@apache.org>.
RongtongJin merged PR #336:
URL: https://github.com/apache/rocketmq-site/pull/336


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@rocketmq.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org