You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@rocketmq.apache.org by GitBox <gi...@apache.org> on 2022/12/26 17:59:43 UTC

[GitHub] [rocketmq-site] mxsm opened a new pull request, #406: [ISSUE #278]Translation for "Deployment-部署方式" Section in the v4.x & 5.0 Document (CN -> EN)

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

   Please do not create a Pull Request without creating an issue first. 
   
   ## What is the purpose of the change
   
   close #278 
   
   ## Brief changelog
   
   - Translation for "Deployment-部署方式" 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: commits-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 #406: [ISSUE #278]Translation for "Deployment-部署方式" Section in the v4.x & 5.0 Document (CN -> EN)

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


##########
i18n/en/docusaurus-plugin-content-docs/current/04-deployment/15deploy.md:
##########
@@ -1,143 +1,140 @@
-# 部署方式
+# Deployment method
 
-<!-- ## 集群搭建 -->
-
-## 单Master模式
+## Single Master mode
 
 :::caution
-这种方式风险较大,一旦Broker重启或者宕机时,会导致整个服务不可用。不建议线上环境使用, 可以用于本地测试。
+This mode carries a higher risk, as a restart or failure of the Broker will result in the entire service being unavailable. It is not recommended for use in online environments, but can be used for local testing.

Review Comment:
   It is not recommended for use in online environments, but can be used for local testing.
   
   ---
   
   It is not recommended in online environments, but can be used for local testing.



##########
i18n/en/docusaurus-plugin-content-docs/current/04-deployment/15deploy.md:
##########
@@ -1,143 +1,140 @@
-# 部署方式
+# Deployment method
 
-<!-- ## 集群搭建 -->
-
-## 单Master模式
+## Single Master mode
 
 :::caution
-这种方式风险较大,一旦Broker重启或者宕机时,会导致整个服务不可用。不建议线上环境使用, 可以用于本地测试。
+This mode carries a higher risk, as a restart or failure of the Broker will result in the entire service being unavailable. It is not recommended for use in online environments, but can be used for local testing.
 :::
 
-### 启动 NameServer
+### Start NameServer
 
 ```bash
-### 首先启动Name Server
+### Start Name Server first
 $ nohup sh mqnamesrv &
  
-### 验证Name Server 是否启动成功
+### Verify if the Name Server has started successfully
 $ tail -f ~/logs/rocketmqlogs/namesrv.log
 The Name Server boot success...
 ```
 
-### 启动 Broker
+### Start Broker
 
 ```bash
-### 启动Broker
+### Start Broker
 $ nohup sh bin/mqbroker -n localhost:9876 &
 
-### 验证Name Server 是否启动成功,例如Broker的IP为:192.168.1.2,且名称为broker-a
+### Verify that the Name Server has started successfully, for example, the broker IP is 192.168.1.2, and the name is broker-a
 $ tail -f ~/logs/rocketmqlogs/Broker.log 
 The broker[broker-a, 192.169.1.2:10911] boot success...
 ```
 
-## 多Master模式
-
-一个集群无Slave,全是Master,例如2个Master或者3个Master,这种模式的优缺点如下:
+## Multiple master mode
 
-- 优点:配置简单,单个Master宕机或重启维护对应用无影响,在磁盘配置为RAID10时,即使机器宕机不可恢复情况下,由于RAID10磁盘非常可靠,消息也不会丢(异步刷盘丢失少量消息,同步刷盘一条不丢),性能最高;
+there are no slaves in the cluster and all are masters, such as 2 masters or 3 masters. The advantages and disadvantages of this mode are as follows:

Review Comment:
   there are no slaves in the cluster and all are masters, such as 2 masters or 3 masters.
   
   ->
   
   The advantages and disadvantages of a cluster which is full of masters without slaves (e.g. 2 or 3 masters) is as follows:



-- 
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 #406: [ISSUE #278]Translation for "Deployment-部署方式" Section in the v4.x & 5.0 Document (CN -> EN)

Posted by GitBox <gi...@apache.org>.
RongtongJin merged PR #406:
URL: https://github.com/apache/rocketmq-site/pull/406


-- 
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] mxsm commented on pull request #406: [ISSUE #278]Translation for "Deployment-部署方式" Section in the v4.x & 5.0 Document (CN -> EN)

Posted by GitBox <gi...@apache.org>.
mxsm commented on PR #406:
URL: https://github.com/apache/rocketmq-site/pull/406#issuecomment-1366762706

   Hi @tsunghanjacktsai  I hava resolved conflict and fixd that needs to change. PTAL~ thanks


-- 
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] mxsm commented on a diff in pull request #406: [ISSUE #278]Translation for "Deployment-部署方式" Section in the v4.x & 5.0 Document (CN -> EN)

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


##########
i18n/en/docusaurus-plugin-content-docs/current/04-deployment/15deploy.md:
##########
@@ -1,143 +1,140 @@
-# 部署方式
+# Deployment method
 
-<!-- ## 集群搭建 -->
-
-## 单Master模式
+## Single Master mode
 
 :::caution
-这种方式风险较大,一旦Broker重启或者宕机时,会导致整个服务不可用。不建议线上环境使用, 可以用于本地测试。
+This mode carries a higher risk, as a restart or failure of the Broker will result in the entire service being unavailable. It is not recommended for use in online environments, but can be used for local testing.

Review Comment:
   @tsunghanjacktsai  I will re-submit pr and fix it



-- 
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