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/rocketmq-site.git
The following commit(s) were added to refs/heads/asf-site by this push:
new 39c3e45e Latest site on successful build auto-pushed to asf-site
39c3e45e is described below
commit 39c3e45e755de2060b0ffbcb3e94af242d45abb5
Author: github-action <[email protected]>
AuthorDate: Mon Apr 25 08:05:18 2022 +0000
Latest site on successful build auto-pushed to asf-site
---
_docs/07-frequently-asked-questions.md | 2 +-
_docs/14-rmq-deployment.md | 8 +--
content/about/contact/index.html | 2 +-
content/about/origin/index.html | 2 +-
content/about/rewards/index.html | 2 +-
content/about/team/index.html | 2 +-
content/docs/batch-example/index.html | 2 +-
content/docs/best-practice-broker/index.html | 2 +-
content/docs/best-practice-consumer/index.html | 2 +-
content/docs/best-practice-namesvr/index.html | 2 +-
content/docs/best-practice-producer/index.html | 2 +-
content/docs/broadcast-example/index.html | 2 +-
content/docs/cli-admin-tool/index.html | 2 +-
content/docs/cluster-deployment/index.html | 2 +-
content/docs/code-guidelines/index.html | 2 +-
content/docs/core-concept/index.html | 2 +-
content/docs/create-pull-request/index.html | 2 +-
content/docs/documentation/index.html | 2 +-
content/docs/faq/index.html | 4 +-
content/docs/filter-by-sql92-example/index.html | 2 +-
content/docs/how-to-contribute/index.html | 2 +-
content/docs/logappender-example/index.html | 2 +-
content/docs/motivation/index.html | 2 +-
content/docs/openmessaging-example/index.html | 2 +-
content/docs/order-example/index.html | 2 +-
content/docs/pull-request/index.html | 2 +-
content/docs/quick-start/index.html | 2 +-
content/docs/release-manual.html | 2 +-
content/docs/rmq-arc/index.html | 2 +-
content/docs/rmq-deployment/index.html | 10 ++--
content/docs/roadmap/index.html | 2 +-
content/docs/schedule-example/index.html | 2 +-
content/docs/simple-example/index.html | 2 +-
content/docs/system-config/index.html | 2 +-
content/docs/transaction-example/index.html | 2 +-
content/dowloading/releases/index.html | 2 +-
content/feed.xml | 2 +-
content/sitemap.xml | 72 ++++++++++++-------------
38 files changed, 81 insertions(+), 81 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.|
diff --git a/content/about/contact/index.html b/content/about/contact/index.html
index 7803770c..9ec0aed0 100644
--- a/content/about/contact/index.html
+++ b/content/about/contact/index.html
@@ -57,7 +57,7 @@
<meta property="og:type" content="article">
- <meta property="article:published_time" content="2022-04-18T08:59:53+00:00">
+ <meta property="article:published_time" content="2022-04-25T08:05:05+00:00">
diff --git a/content/about/origin/index.html b/content/about/origin/index.html
index e051e890..cb0f4e60 100644
--- a/content/about/origin/index.html
+++ b/content/about/origin/index.html
@@ -57,7 +57,7 @@
<meta property="og:type" content="article">
- <meta property="article:published_time" content="2022-04-18T08:59:53+00:00">
+ <meta property="article:published_time" content="2022-04-25T08:05:05+00:00">
diff --git a/content/about/rewards/index.html b/content/about/rewards/index.html
index 1359a801..dc7811ba 100644
--- a/content/about/rewards/index.html
+++ b/content/about/rewards/index.html
@@ -57,7 +57,7 @@
<meta property="og:type" content="article">
- <meta property="article:published_time" content="2022-04-18T08:59:53+00:00">
+ <meta property="article:published_time" content="2022-04-25T08:05:05+00:00">
diff --git a/content/about/team/index.html b/content/about/team/index.html
index 25399086..a901791c 100644
--- a/content/about/team/index.html
+++ b/content/about/team/index.html
@@ -57,7 +57,7 @@
<meta property="og:type" content="article">
- <meta property="article:published_time" content="2022-04-18T08:59:53+00:00">
+ <meta property="article:published_time" content="2022-04-25T08:05:05+00:00">
diff --git a/content/docs/batch-example/index.html
b/content/docs/batch-example/index.html
index c9e98197..be02c16a 100644
--- a/content/docs/batch-example/index.html
+++ b/content/docs/batch-example/index.html
@@ -57,7 +57,7 @@
<meta property="og:type" content="article">
- <meta property="article:published_time" content="2022-04-18T08:59:53+00:00">
+ <meta property="article:published_time" content="2022-04-25T08:05:05+00:00">
diff --git a/content/docs/best-practice-broker/index.html
b/content/docs/best-practice-broker/index.html
index bd8da77d..a27e32bf 100644
--- a/content/docs/best-practice-broker/index.html
+++ b/content/docs/best-practice-broker/index.html
@@ -57,7 +57,7 @@
<meta property="og:type" content="article">
- <meta property="article:published_time" content="2022-04-18T08:59:53+00:00">
+ <meta property="article:published_time" content="2022-04-25T08:05:05+00:00">
diff --git a/content/docs/best-practice-consumer/index.html
b/content/docs/best-practice-consumer/index.html
index 675e5268..e9e76ad3 100644
--- a/content/docs/best-practice-consumer/index.html
+++ b/content/docs/best-practice-consumer/index.html
@@ -57,7 +57,7 @@
<meta property="og:type" content="article">
- <meta property="article:published_time" content="2022-04-18T08:59:53+00:00">
+ <meta property="article:published_time" content="2022-04-25T08:05:05+00:00">
diff --git a/content/docs/best-practice-namesvr/index.html
b/content/docs/best-practice-namesvr/index.html
index 3b131372..29cb7222 100644
--- a/content/docs/best-practice-namesvr/index.html
+++ b/content/docs/best-practice-namesvr/index.html
@@ -57,7 +57,7 @@
<meta property="og:type" content="article">
- <meta property="article:published_time" content="2022-04-18T08:59:53+00:00">
+ <meta property="article:published_time" content="2022-04-25T08:05:05+00:00">
diff --git a/content/docs/best-practice-producer/index.html
b/content/docs/best-practice-producer/index.html
index c187211f..100cc019 100644
--- a/content/docs/best-practice-producer/index.html
+++ b/content/docs/best-practice-producer/index.html
@@ -57,7 +57,7 @@
<meta property="og:type" content="article">
- <meta property="article:published_time" content="2022-04-18T08:59:53+00:00">
+ <meta property="article:published_time" content="2022-04-25T08:05:05+00:00">
diff --git a/content/docs/broadcast-example/index.html
b/content/docs/broadcast-example/index.html
index cff2cb73..690f42f2 100644
--- a/content/docs/broadcast-example/index.html
+++ b/content/docs/broadcast-example/index.html
@@ -57,7 +57,7 @@
<meta property="og:type" content="article">
- <meta property="article:published_time" content="2022-04-18T08:59:53+00:00">
+ <meta property="article:published_time" content="2022-04-25T08:05:05+00:00">
diff --git a/content/docs/cli-admin-tool/index.html
b/content/docs/cli-admin-tool/index.html
index 5731bffd..432199b3 100644
--- a/content/docs/cli-admin-tool/index.html
+++ b/content/docs/cli-admin-tool/index.html
@@ -57,7 +57,7 @@
<meta property="og:type" content="article">
- <meta property="article:published_time" content="2022-04-18T08:59:53+00:00">
+ <meta property="article:published_time" content="2022-04-25T08:05:05+00:00">
diff --git a/content/docs/cluster-deployment/index.html
b/content/docs/cluster-deployment/index.html
index 01292863..004015b1 100644
--- a/content/docs/cluster-deployment/index.html
+++ b/content/docs/cluster-deployment/index.html
@@ -57,7 +57,7 @@
<meta property="og:type" content="article">
- <meta property="article:published_time" content="2022-04-18T08:59:53+00:00">
+ <meta property="article:published_time" content="2022-04-25T08:05:05+00:00">
diff --git a/content/docs/code-guidelines/index.html
b/content/docs/code-guidelines/index.html
index 03b9c240..bfd05f37 100644
--- a/content/docs/code-guidelines/index.html
+++ b/content/docs/code-guidelines/index.html
@@ -57,7 +57,7 @@
<meta property="og:type" content="article">
- <meta property="article:published_time" content="2022-04-18T08:59:53+00:00">
+ <meta property="article:published_time" content="2022-04-25T08:05:05+00:00">
diff --git a/content/docs/core-concept/index.html
b/content/docs/core-concept/index.html
index cf8620ed..0fe70718 100644
--- a/content/docs/core-concept/index.html
+++ b/content/docs/core-concept/index.html
@@ -57,7 +57,7 @@
<meta property="og:type" content="article">
- <meta property="article:published_time" content="2022-04-18T08:59:53+00:00">
+ <meta property="article:published_time" content="2022-04-25T08:05:05+00:00">
diff --git a/content/docs/create-pull-request/index.html
b/content/docs/create-pull-request/index.html
index e493a721..8e6e7ad2 100644
--- a/content/docs/create-pull-request/index.html
+++ b/content/docs/create-pull-request/index.html
@@ -57,7 +57,7 @@
<meta property="og:type" content="article">
- <meta property="article:published_time" content="2022-04-18T08:59:53+00:00">
+ <meta property="article:published_time" content="2022-04-25T08:05:05+00:00">
diff --git a/content/docs/documentation/index.html
b/content/docs/documentation/index.html
index 54a7005c..82eac5f5 100644
--- a/content/docs/documentation/index.html
+++ b/content/docs/documentation/index.html
@@ -57,7 +57,7 @@
<meta property="og:type" content="article">
- <meta property="article:published_time" content="2022-04-18T08:59:53+00:00">
+ <meta property="article:published_time" content="2022-04-25T08:05:05+00:00">
diff --git a/content/docs/faq/index.html b/content/docs/faq/index.html
index dd492de5..91062d3c 100644
--- a/content/docs/faq/index.html
+++ b/content/docs/faq/index.html
@@ -57,7 +57,7 @@
<meta property="og:type" content="article">
- <meta property="article:published_time" content="2022-04-18T08:59:53+00:00">
+ <meta property="article:published_time" content="2022-04-25T08:05:05+00:00">
@@ -564,7 +564,7 @@ consumer.setConsumeThreadMax(20);
<li>Make sure that the producer can connect to a name server and is capable
of fetching routing meta info from it.</li>
<li>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.</li>
<li>Make sure that your brokers are sending heartbeats to the same list of
name servers your producer is connecting to.</li>
- <li>Make sure that the topic’s permssion is 6(rw-), or at least 2(-w-).</li>
+ <li>Make sure that the topic’s permission is 6(rw-), or at least 2(-w-).</li>
</ol>
<p>If you can’t find this topic, create it on a broker via admin tools command
updateTopic or web console.</p>
diff --git a/content/docs/filter-by-sql92-example/index.html
b/content/docs/filter-by-sql92-example/index.html
index 86baa2e7..a3b2e38a 100644
--- a/content/docs/filter-by-sql92-example/index.html
+++ b/content/docs/filter-by-sql92-example/index.html
@@ -57,7 +57,7 @@
<meta property="og:type" content="article">
- <meta property="article:published_time" content="2022-04-18T08:59:53+00:00">
+ <meta property="article:published_time" content="2022-04-25T08:05:05+00:00">
diff --git a/content/docs/how-to-contribute/index.html
b/content/docs/how-to-contribute/index.html
index d1e41858..f47d6cd0 100644
--- a/content/docs/how-to-contribute/index.html
+++ b/content/docs/how-to-contribute/index.html
@@ -57,7 +57,7 @@
<meta property="og:type" content="article">
- <meta property="article:published_time" content="2022-04-18T08:59:53+00:00">
+ <meta property="article:published_time" content="2022-04-25T08:05:05+00:00">
diff --git a/content/docs/logappender-example/index.html
b/content/docs/logappender-example/index.html
index ed0b4b7d..51950796 100644
--- a/content/docs/logappender-example/index.html
+++ b/content/docs/logappender-example/index.html
@@ -57,7 +57,7 @@
<meta property="og:type" content="article">
- <meta property="article:published_time" content="2022-04-18T08:59:53+00:00">
+ <meta property="article:published_time" content="2022-04-25T08:05:05+00:00">
diff --git a/content/docs/motivation/index.html
b/content/docs/motivation/index.html
index 78053d06..2b373032 100644
--- a/content/docs/motivation/index.html
+++ b/content/docs/motivation/index.html
@@ -57,7 +57,7 @@
<meta property="og:type" content="article">
- <meta property="article:published_time" content="2022-04-18T08:59:53+00:00">
+ <meta property="article:published_time" content="2022-04-25T08:05:05+00:00">
diff --git a/content/docs/openmessaging-example/index.html
b/content/docs/openmessaging-example/index.html
index 96ce7caf..0fccedd5 100644
--- a/content/docs/openmessaging-example/index.html
+++ b/content/docs/openmessaging-example/index.html
@@ -57,7 +57,7 @@
<meta property="og:type" content="article">
- <meta property="article:published_time" content="2022-04-18T08:59:53+00:00">
+ <meta property="article:published_time" content="2022-04-25T08:05:05+00:00">
diff --git a/content/docs/order-example/index.html
b/content/docs/order-example/index.html
index d6e25952..f97775b5 100644
--- a/content/docs/order-example/index.html
+++ b/content/docs/order-example/index.html
@@ -57,7 +57,7 @@
<meta property="og:type" content="article">
- <meta property="article:published_time" content="2022-04-18T08:59:53+00:00">
+ <meta property="article:published_time" content="2022-04-25T08:05:05+00:00">
diff --git a/content/docs/pull-request/index.html
b/content/docs/pull-request/index.html
index e9c6506e..2f3107c9 100644
--- a/content/docs/pull-request/index.html
+++ b/content/docs/pull-request/index.html
@@ -57,7 +57,7 @@
<meta property="og:type" content="article">
- <meta property="article:published_time" content="2022-04-18T08:59:53+00:00">
+ <meta property="article:published_time" content="2022-04-25T08:05:05+00:00">
diff --git a/content/docs/quick-start/index.html
b/content/docs/quick-start/index.html
index ad25ff56..dedc3717 100644
--- a/content/docs/quick-start/index.html
+++ b/content/docs/quick-start/index.html
@@ -57,7 +57,7 @@
<meta property="og:type" content="article">
- <meta property="article:published_time" content="2022-04-18T08:59:53+00:00">
+ <meta property="article:published_time" content="2022-04-25T08:05:05+00:00">
diff --git a/content/docs/release-manual.html b/content/docs/release-manual.html
index 6363ea57..be95324e 100644
--- a/content/docs/release-manual.html
+++ b/content/docs/release-manual.html
@@ -57,7 +57,7 @@
<meta property="og:type" content="article">
- <meta property="article:published_time" content="2022-04-18T08:59:53+00:00">
+ <meta property="article:published_time" content="2022-04-25T08:05:05+00:00">
diff --git a/content/docs/rmq-arc/index.html b/content/docs/rmq-arc/index.html
index 28616f19..35dfcc32 100644
--- a/content/docs/rmq-arc/index.html
+++ b/content/docs/rmq-arc/index.html
@@ -57,7 +57,7 @@
<meta property="og:type" content="article">
- <meta property="article:published_time" content="2022-04-18T08:59:53+00:00">
+ <meta property="article:published_time" content="2022-04-25T08:05:05+00:00">
diff --git a/content/docs/rmq-deployment/index.html
b/content/docs/rmq-deployment/index.html
index 4022229c..64ccf4a6 100644
--- a/content/docs/rmq-deployment/index.html
+++ b/content/docs/rmq-deployment/index.html
@@ -57,7 +57,7 @@
<meta property="og:type" content="article">
- <meta property="article:published_time" content="2022-04-18T08:59:53+00:00">
+ <meta property="article:published_time" content="2022-04-25T08:05:05+00:00">
@@ -495,7 +495,7 @@
<p>This section introduces production-ready deployment solution. Generally
speaking, we are deploying a resilient RocketMQ cluster having no single point
of failure.</p>
<h3 id="prerequisite">Prerequisite</h3>
-<p>Before starting this section, make sure you have read Quick Start section,
and are farmiliar with the core concepts and components of RocketMQ.</p>
+<p>Before starting this section, make sure you have read Quick Start section,
and are familiar with the core concepts and components of RocketMQ.</p>
<h4 id="production-ready-deployment">Production-ready Deployment</h4>
<h5 id="name-server">Name Server</h5>
@@ -506,7 +506,7 @@
<h4 id="broker">Broker</h4>
<p>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.</p>
-<p>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.</p>
+<p>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.</p>
<h3 id="configuration">Configuration</h3>
<p>When deploying a RocketMQ cluster, recommended configuration is listed
below:</p>
@@ -563,7 +563,7 @@
<td style="text-align: right">file path for consume queue</td>
</tr>
<tr>
- <td>mapedFileSizeCommitLog</td>
+ <td>mappedFileSizeCommitLog</td>
<td style="text-align: center">1024 * 1024 * 1024(1G)</td>
<td style="text-align: right">mapped file size for commit log</td>
</tr>
@@ -573,7 +573,7 @@
<td style="text-align: right">When to delete the commitlog which is out
of the reserve time</td>
</tr>
<tr>
- <td>fileReserverdTime</td>
+ <td>fileReservedTime</td>
<td style="text-align: center">72</td>
<td style="text-align: right">The number of hours to keep a commitlog
before deleting it</td>
</tr>
diff --git a/content/docs/roadmap/index.html b/content/docs/roadmap/index.html
index 36505039..3c129aab 100644
--- a/content/docs/roadmap/index.html
+++ b/content/docs/roadmap/index.html
@@ -57,7 +57,7 @@
<meta property="og:type" content="article">
- <meta property="article:published_time" content="2022-04-18T08:59:53+00:00">
+ <meta property="article:published_time" content="2022-04-25T08:05:05+00:00">
diff --git a/content/docs/schedule-example/index.html
b/content/docs/schedule-example/index.html
index 08924104..fae9708d 100644
--- a/content/docs/schedule-example/index.html
+++ b/content/docs/schedule-example/index.html
@@ -57,7 +57,7 @@
<meta property="og:type" content="article">
- <meta property="article:published_time" content="2022-04-18T08:59:53+00:00">
+ <meta property="article:published_time" content="2022-04-25T08:05:05+00:00">
diff --git a/content/docs/simple-example/index.html
b/content/docs/simple-example/index.html
index cfa5d92f..707c05a3 100644
--- a/content/docs/simple-example/index.html
+++ b/content/docs/simple-example/index.html
@@ -57,7 +57,7 @@
<meta property="og:type" content="article">
- <meta property="article:published_time" content="2022-04-18T08:59:53+00:00">
+ <meta property="article:published_time" content="2022-04-25T08:05:05+00:00">
diff --git a/content/docs/system-config/index.html
b/content/docs/system-config/index.html
index 3e3ebf6c..1fae5064 100644
--- a/content/docs/system-config/index.html
+++ b/content/docs/system-config/index.html
@@ -57,7 +57,7 @@
<meta property="og:type" content="article">
- <meta property="article:published_time" content="2022-04-18T08:59:53+00:00">
+ <meta property="article:published_time" content="2022-04-25T08:05:05+00:00">
diff --git a/content/docs/transaction-example/index.html
b/content/docs/transaction-example/index.html
index 142ec47a..e3236f8e 100644
--- a/content/docs/transaction-example/index.html
+++ b/content/docs/transaction-example/index.html
@@ -57,7 +57,7 @@
<meta property="og:type" content="article">
- <meta property="article:published_time" content="2022-04-18T08:59:53+00:00">
+ <meta property="article:published_time" content="2022-04-25T08:05:05+00:00">
diff --git a/content/dowloading/releases/index.html
b/content/dowloading/releases/index.html
index e7352d6d..dcfe09f6 100644
--- a/content/dowloading/releases/index.html
+++ b/content/dowloading/releases/index.html
@@ -57,7 +57,7 @@
<meta property="og:type" content="article">
- <meta property="article:published_time" content="2022-04-18T08:59:53+00:00">
+ <meta property="article:published_time" content="2022-04-25T08:05:05+00:00">
diff --git a/content/feed.xml b/content/feed.xml
index 442305ad..a8489cd2 100644
--- a/content/feed.xml
+++ b/content/feed.xml
@@ -1,4 +1,4 @@
-<?xml version="1.0" encoding="utf-8"?><feed
xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/"
version="3.9.2">Jekyll</generator><link href="/feed.xml" rel="self"
type="application/atom+xml" /><link href="/" rel="alternate" type="text/html"
/><updated>2022-04-18T08:59:53+00:00</updated><id>/feed.xml</id><title
type="html">Apache RocketMQ</title><subtitle>The homepage of
RocketMQ.</subtitle><author><name>{"name"=>nil,
"avatar"=>"/ass [...]
+<?xml version="1.0" encoding="utf-8"?><feed
xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/"
version="3.9.2">Jekyll</generator><link href="/feed.xml" rel="self"
type="application/atom+xml" /><link href="/" rel="alternate" type="text/html"
/><updated>2022-04-25T08:05:05+00:00</updated><id>/feed.xml</id><title
type="html">Apache RocketMQ</title><subtitle>The homepage of
RocketMQ.</subtitle><author><name>{"name"=>nil,
"avatar"=>"/ass [...]
<h2> Download the rocketmq-streams-1.0.1-preview release</h2>
diff --git a/content/sitemap.xml b/content/sitemap.xml
index 7b57d285..a903ae4d 100644
--- a/content/sitemap.xml
+++ b/content/sitemap.xml
@@ -2,139 +2,139 @@
<urlset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9
http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd"
xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>/about/team/</loc>
-<lastmod>2022-04-18T08:59:53+00:00</lastmod>
+<lastmod>2022-04-25T08:05:05+00:00</lastmod>
</url>
<url>
<loc>/about/contact/</loc>
-<lastmod>2022-04-18T08:59:53+00:00</lastmod>
+<lastmod>2022-04-25T08:05:05+00:00</lastmod>
</url>
<url>
<loc>/about/rewards/</loc>
-<lastmod>2022-04-18T08:59:53+00:00</lastmod>
+<lastmod>2022-04-25T08:05:05+00:00</lastmod>
</url>
<url>
<loc>/about/origin/</loc>
-<lastmod>2022-04-18T08:59:53+00:00</lastmod>
+<lastmod>2022-04-25T08:05:05+00:00</lastmod>
</url>
<url>
<loc>/docs/quick-start/</loc>
-<lastmod>2022-04-18T08:59:53+00:00</lastmod>
+<lastmod>2022-04-25T08:05:05+00:00</lastmod>
</url>
<url>
<loc>/docs/motivation/</loc>
-<lastmod>2022-04-18T08:59:53+00:00</lastmod>
+<lastmod>2022-04-25T08:05:05+00:00</lastmod>
</url>
<url>
<loc>/docs/core-concept/</loc>
-<lastmod>2022-04-18T08:59:53+00:00</lastmod>
+<lastmod>2022-04-25T08:05:05+00:00</lastmod>
</url>
<url>
<loc>/docs/cli-admin-tool/</loc>
-<lastmod>2022-04-18T08:59:53+00:00</lastmod>
+<lastmod>2022-04-25T08:05:05+00:00</lastmod>
</url>
<url>
<loc>/docs/cluster-deployment/</loc>
-<lastmod>2022-04-18T08:59:53+00:00</lastmod>
+<lastmod>2022-04-25T08:05:05+00:00</lastmod>
</url>
<url>
<loc>/docs/pull-request/</loc>
-<lastmod>2022-04-18T08:59:53+00:00</lastmod>
+<lastmod>2022-04-25T08:05:05+00:00</lastmod>
</url>
<url>
<loc>/docs/code-guidelines/</loc>
-<lastmod>2022-04-18T08:59:53+00:00</lastmod>
+<lastmod>2022-04-25T08:05:05+00:00</lastmod>
</url>
<url>
<loc>/docs/documentation/</loc>
-<lastmod>2022-04-18T08:59:53+00:00</lastmod>
+<lastmod>2022-04-25T08:05:05+00:00</lastmod>
</url>
<url>
<loc>/docs/faq/</loc>
-<lastmod>2022-04-18T08:59:53+00:00</lastmod>
+<lastmod>2022-04-25T08:05:05+00:00</lastmod>
</url>
<url>
<loc>/docs/release-manual</loc>
-<lastmod>2022-04-18T08:59:53+00:00</lastmod>
+<lastmod>2022-04-25T08:05:05+00:00</lastmod>
</url>
<url>
<loc>/dowloading/releases/</loc>
-<lastmod>2022-04-18T08:59:53+00:00</lastmod>
+<lastmod>2022-04-25T08:05:05+00:00</lastmod>
</url>
<url>
<loc>/docs/roadmap/</loc>
-<lastmod>2022-04-18T08:59:53+00:00</lastmod>
+<lastmod>2022-04-25T08:05:05+00:00</lastmod>
</url>
<url>
<loc>/docs/batch-example/</loc>
-<lastmod>2022-04-18T08:59:53+00:00</lastmod>
+<lastmod>2022-04-25T08:05:05+00:00</lastmod>
</url>
<url>
<loc>/docs/broadcast-example/</loc>
-<lastmod>2022-04-18T08:59:53+00:00</lastmod>
+<lastmod>2022-04-25T08:05:05+00:00</lastmod>
</url>
<url>
<loc>/docs/rmq-deployment/</loc>
-<lastmod>2022-04-18T08:59:53+00:00</lastmod>
+<lastmod>2022-04-25T08:05:05+00:00</lastmod>
</url>
<url>
<loc>/docs/order-example/</loc>
-<lastmod>2022-04-18T08:59:53+00:00</lastmod>
+<lastmod>2022-04-25T08:05:05+00:00</lastmod>
</url>
<url>
<loc>/docs/rmq-arc/</loc>
-<lastmod>2022-04-18T08:59:53+00:00</lastmod>
+<lastmod>2022-04-25T08:05:05+00:00</lastmod>
</url>
<url>
<loc>/docs/schedule-example/</loc>
-<lastmod>2022-04-18T08:59:53+00:00</lastmod>
+<lastmod>2022-04-25T08:05:05+00:00</lastmod>
</url>
<url>
<loc>/docs/simple-example/</loc>
-<lastmod>2022-04-18T08:59:53+00:00</lastmod>
+<lastmod>2022-04-25T08:05:05+00:00</lastmod>
</url>
<url>
<loc>/docs/filter-by-sql92-example/</loc>
-<lastmod>2022-04-18T08:59:53+00:00</lastmod>
+<lastmod>2022-04-25T08:05:05+00:00</lastmod>
</url>
<url>
<loc>/docs/logappender-example/</loc>
-<lastmod>2022-04-18T08:59:53+00:00</lastmod>
+<lastmod>2022-04-25T08:05:05+00:00</lastmod>
</url>
<url>
<loc>/docs/openmessaging-example/</loc>
-<lastmod>2022-04-18T08:59:53+00:00</lastmod>
+<lastmod>2022-04-25T08:05:05+00:00</lastmod>
</url>
<url>
<loc>/docs/system-config/</loc>
-<lastmod>2022-04-18T08:59:53+00:00</lastmod>
+<lastmod>2022-04-25T08:05:05+00:00</lastmod>
</url>
<url>
<loc>/docs/how-to-contribute/</loc>
-<lastmod>2022-04-18T08:59:53+00:00</lastmod>
+<lastmod>2022-04-25T08:05:05+00:00</lastmod>
</url>
<url>
<loc>/docs/transaction-example/</loc>
-<lastmod>2022-04-18T08:59:53+00:00</lastmod>
+<lastmod>2022-04-25T08:05:05+00:00</lastmod>
</url>
<url>
<loc>/docs/best-practice-broker/</loc>
-<lastmod>2022-04-18T08:59:53+00:00</lastmod>
+<lastmod>2022-04-25T08:05:05+00:00</lastmod>
</url>
<url>
<loc>/docs/best-practice-consumer/</loc>
-<lastmod>2022-04-18T08:59:53+00:00</lastmod>
+<lastmod>2022-04-25T08:05:05+00:00</lastmod>
</url>
<url>
<loc>/docs/create-pull-request/</loc>
-<lastmod>2022-04-18T08:59:53+00:00</lastmod>
+<lastmod>2022-04-25T08:05:05+00:00</lastmod>
</url>
<url>
<loc>/docs/best-practice-namesvr/</loc>
-<lastmod>2022-04-18T08:59:53+00:00</lastmod>
+<lastmod>2022-04-25T08:05:05+00:00</lastmod>
</url>
<url>
<loc>/docs/best-practice-producer/</loc>
-<lastmod>2022-04-18T08:59:53+00:00</lastmod>
+<lastmod>2022-04-25T08:05:05+00:00</lastmod>
</url>
<url>
<loc>/rocketmq/how-to-support-more-queues-in-rocketmq/</loc>
@@ -463,10 +463,10 @@
</url>
<url>
<loc>/assets/attachment/launch-rocketmq-code-marathon.pdf</loc>
-<lastmod>2022-04-18T08:55:13+00:00</lastmod>
+<lastmod>2022-04-25T08:00:20+00:00</lastmod>
</url>
<url>
<loc>/assets/attachment/launch-second-rocketmq-code-marathon.pdf</loc>
-<lastmod>2022-04-18T08:55:13+00:00</lastmod>
+<lastmod>2022-04-25T08:00:20+00:00</lastmod>
</url>
</urlset>