You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@rocketmq.apache.org by ji...@apache.org on 2022/06/22 02:16:02 UTC

[rocketmq-site] 07/23: fix some spell error (#119)

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

jinrongtong pushed a commit to branch new-official-website
in repository https://gitbox.apache.org/repos/asf/rocketmq-site.git

commit 7c676422d4cf4f722b16ee7cd1698516ef8dfcfe
Author: hn <72...@users.noreply.github.com>
AuthorDate: Mon Apr 25 16:00:04 2022 +0800

    fix some spell error (#119)
    
    Co-authored-by: hening <ni...@alibaba-inc.com>
---
 _docs/07-frequently-asked-questions.md | 2 +-
 _docs/14-rmq-deployment.md             | 8 ++++----
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/_docs/07-frequently-asked-questions.md b/_docs/07-frequently-asked-questions.md
index 24629cda..aea4c0b6 100644
--- a/_docs/07-frequently-asked-questions.md
+++ b/_docs/07-frequently-asked-questions.md
@@ -90,6 +90,6 @@ This happens when you are trying to send messages to a topic whose routing info
 1. Make sure that the producer can connect to a name server and is capable of fetching routing meta info from it.
 2. Make sure that name servers do contain routing meta info of the topic. You may query the routing meta info from name server through topicRoute using admin tools or web console.
 3. Make sure that your brokers are sending heartbeats to the same list of name servers your producer is connecting to.
-4. Make sure that the topic's permssion is 6(rw-), or at least 2(-w-).
+4. Make sure that the topic's permission is 6(rw-), or at least 2(-w-).
 
 If you can't find this topic, create it on a broker via admin tools command updateTopic or web console.
diff --git a/_docs/14-rmq-deployment.md b/_docs/14-rmq-deployment.md
index 3901c8d2..fb31e1e6 100644
--- a/_docs/14-rmq-deployment.md
+++ b/_docs/14-rmq-deployment.md
@@ -10,7 +10,7 @@ modified: 2017-04-24T15:01:43-04:00
 This section introduces production-ready deployment solution. Generally speaking, we are deploying a resilient RocketMQ cluster having no single point of failure.
 
 ### Prerequisite
-Before starting this section, make sure you have read Quick Start section, and are farmiliar with the core concepts and components of RocketMQ.
+Before starting this section, make sure you have read Quick Start section, and are familiar with the core concepts and components of RocketMQ.
 
 #### Production-ready Deployment
 ##### Name Server
@@ -21,7 +21,7 @@ Name server follows the share-nothing design paradigm. Brokers send heartbeat da
 #### Broker
 Brokers can be divided into two categories according to their roles: master and slave. Master brokers provide RW access while slave brokers only accept read access.
 
-To deploy a high-availability RocketMQ cluster with no single point of failure, a series of broker sets should be deployed. A broker set contains one master with brokerId set to 0 and several slaves with non-zero brokerIDs. All of the brokers in one set have the same brokerName. In serious scenarios, we should have at least two brokers in one broker set. Each topic resides in two or more brokers.
+To deploy a high-availability RocketMQ cluster with no single point of failure, a series of broker sets should be deployed. A broker set contains one master with brokerId set to 0 and several slaves with non-zero brokerIDs. All the brokers in one set have the same brokerName. In serious scenarios, we should have at least two brokers in one broker set. Each topic resides in two or more brokers.
 
 ### Configuration
 When deploying a RocketMQ cluster, recommended configuration is listed below:
@@ -38,9 +38,9 @@ When deploying a RocketMQ cluster, recommended configuration is listed below:
 | brokerId | 0 |broker id, 0 means master, positive integers mean slave |
 | storePathCommitLog | $HOME/store/commitlog/ |file path for commit log |
 | storePathConsumerQueue |  $HOME/store/consumequeue/ | file path for consume queue |
-| mapedFileSizeCommitLog | 1024 * 1024 * 1024(1G) | mapped file size for commit log |
+| mappedFileSizeCommitLog | 1024 * 1024 * 1024(1G) | mapped file size for commit log |
 | deleteWhen | 04 |When to delete the commitlog which is out of the reserve time |
-| fileReserverdTime | 72 |The number of hours to keep a commitlog before deleting it |
+| fileReservedTime | 72 |The number of hours to keep a commitlog before deleting it |
 | brokerRole | ASYNC_MASTER |SYNC_MASTER/ASYNC_MASTER/SLAVE |
 | flushDiskType | ASYNC_FLUSH |{SYNC_FLUSH/ASYNC_FLUSH}. Broker of SYNC_FLUSH mode flushes each message onto disk before acknowledging producer. Broker of ASYNC_FLUSH mode, on the other hand, takes advantage of group-committing, achieving better performance.|