You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@rocketmq.apache.org by yu...@apache.org on 2017/09/15 12:35:23 UTC

[1/9] incubator-rocketmq-site git commit: Polish rocketmq motivation

Repository: incubator-rocketmq-site
Updated Branches:
  refs/heads/asf-site de85b26a2 -> 4a0f5236f


Polish rocketmq motivation


Project: http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/commit/3a39b1b0
Tree: http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/tree/3a39b1b0
Diff: http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/diff/3a39b1b0

Branch: refs/heads/asf-site
Commit: 3a39b1b00652a2a4374bc20754976f5c7931b51b
Parents: 52fd3d8
Author: yukon <yu...@apache.org>
Authored: Fri Aug 4 17:18:51 2017 +0800
Committer: yukon <yu...@apache.org>
Committed: Fri Aug 4 17:18:51 2017 +0800

----------------------------------------------------------------------
 _docs/02-motivation.md | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/blob/3a39b1b0/_docs/02-motivation.md
----------------------------------------------------------------------
diff --git a/_docs/02-motivation.md b/_docs/02-motivation.md
index b15cee2..da00701 100644
--- a/_docs/02-motivation.md
+++ b/_docs/02-motivation.md
@@ -30,8 +30,8 @@ The following table demonstrates the comparison between RocketMQ, ActiveMQ and K
 # RocketMQ vs. ActiveMQ vs. Kafka
 
 
-| Messaging Product|Client SDK| Protocol and Specification | Order Message  |Message Filter|Server Triggered Redelivery|Persistent Message|Retroactive Consumers|Message Priority|High Availability and Failover|Message Track|Configuration|Management and Operation Tools|
-| -------|--------|--------|-----|-----|-----|-----|-----|-----|-----|-----|-----|-----|
-| ActiveMQ|Java, .NET, C++ etc. |Push model, support OpenWire, STOMP, AMQP, MQTT, JMS|Exclusive Consumer or Exclusive Queues can ensure ordering|Supported|Not Supported|Supports very fast persistence using JDBC along with a high performance journal,such as levelDB, kahaDB|Supported|Supported|Supported, depending on storage,if using kahadb it requires a ZooKeeper server|Not Supported|The default configuration is low level, user need to optimize the configuration parameters|Supported|
-| Kafka      | Java, Scala etc.|Pull model, support TCP|Ensure ordering of messages within a partition|Supported, you can use Kafka Streams to filter messages|Not Supported|High performance file storage|Supported offset indicate|Not Supported|Supported, requires a ZooKeeper server|Not Supported|Kafka uses key-value pairs format for configuration. These values can be supplied either from a file or programmatically.|Supported, use terminal command to expose core metrics|
-| RocketMQ      |Java, .NET, C++ |Pull model, support TCP, JMS|Ensure strict ordering of messages, have no hot spot problem,and can scale out gracefully|Supported, you can even upload yourself custom-built filter code snippets|Supported|High performance and low latency file storage|Supported timestamp and offset 2 indicates|Not Supported|Supported, Master-Slave model, without another kit|Supported|Work out of box,user only need to pay attention to a few configurations|Supported, rich web and terminal command to expose core metrics|
\ No newline at end of file
+| Messaging Product|Client SDK| Protocol and Specification | Ordered Message  | Scheduled Message | Batched Message |BroadCast Message| Message Filter|Server Triggered Redelivery|Message Storage|Message Retroactive|Message Priority|High Availability and Failover|Message Track|Configuration|Management and Operation Tools|
+| -------|--------|--------|-----|-----|-----|-----|-----|-----|-----|-----|-----|-----|-----|-----|-----|
+| ActiveMQ|Java, .NET, C++ etc. |Push model, support OpenWire, STOMP, AMQP, MQTT, JMS|Exclusive Consumer or Exclusive Queues can ensure ordering|Supported|Not Supported|Supported|Supported|Not Supported|Supports very fast persistence using JDBC along with a high performance journal,such as levelDB, kahaDB|Supported|Supported|Supported, depending on storage,if using kahadb it requires a ZooKeeper server|Not Supported|The default configuration is low level, user need to optimize the configuration parameters|Supported|
+| Kafka      | Java, Scala etc.|Pull model, support TCP|Ensure ordering of messages within a partition|Not Supported|Supported, with async producer|Not Supported|Supported, you can use Kafka Streams to filter messages|Not Supported|High performance file storage|Supported offset indicate|Not Supported|Supported, requires a ZooKeeper server|Not Supported|Kafka uses key-value pairs format for configuration. These values can be supplied either from a file or programmatically.|Supported, use terminal command to expose core metrics|
+| RocketMQ      |Java, C++, Go |Pull model, support TCP, JMS, OpenMessaging|Ensure strict ordering of messages,and can scale out gracefully|Supported|Supported, with sync mode to avoid message loss|Supported|Supported, property filter expressions based on SQL92|Supported|High performance and low latency file storage|Supported timestamp and offset two indicates|Not Supported|Supported, Master-Slave model, without another kit|Supported|Work out of box,user only need to pay attention to a few configurations|Supported, rich web and terminal command to expose core metrics|
\ No newline at end of file


[6/9] incubator-rocketmq-site git commit: Add a checklist when create a pull request

Posted by yu...@apache.org.
Add a checklist when create a pull request


Project: http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/commit/e194d2be
Tree: http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/tree/e194d2be
Diff: http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/diff/e194d2be

Branch: refs/heads/asf-site
Commit: e194d2bebc2458671c7f827b10e177bcfd1b67c7
Parents: 9dce04a
Author: yukon <yu...@apache.org>
Authored: Thu Sep 7 14:21:20 2017 +0800
Committer: yukon <yu...@apache.org>
Committed: Thu Sep 7 14:21:20 2017 +0800

----------------------------------------------------------------------
 _docs/06-best-practice-pull-request.md | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/blob/e194d2be/_docs/06-best-practice-pull-request.md
----------------------------------------------------------------------
diff --git a/_docs/06-best-practice-pull-request.md b/_docs/06-best-practice-pull-request.md
index 321ba1a..084cbf8 100644
--- a/_docs/06-best-practice-pull-request.md
+++ b/_docs/06-best-practice-pull-request.md
@@ -83,6 +83,22 @@ Pull requests are made to `apache/incubator-rocketmq` repository on Github.
 In the Github UI you should pick the master branch as target of the PR. <br />
 You pull request will be reviewed and commented by committers, and issues can be discussed. When all reviewers are positive on the pull request, it will be merged.
 
+# Check List for a PR
+
+Each pull request should follow this checklist to help us incorporate your contribution quickly and easily:
+
+```markdown
+- [x] Make sure there is a [JIRA issue](https://issues.apache.org/jira/projects/ROCKETMQ/issues/) filed for the change (usually before you start working on it). Trivial changes like typos do not require a JIRA 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 `[ROCKETMQ-XXX] 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/incubator-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).
+
+```
+
+Remember use `- [x]` mark a item finished in the check list and there is a [demo pull request](https://github.com/apache/incubator-rocketmq/pull/152) can be your reference. 
+
 # Merging a PR (yours or contributors)
 Start with reading [GitHub PR merging locally](https://help.github.com/articles/checking-out-pull-requests-locally/). Remember that pull requests are equivalent to a remote github branch with potentially a multitude of commits. In this case it is recommended to squash remote commit history to have one commit per issue, rather than merging in a multitude of contributor's commits. In order to do that, as well as to close the PR at the same time, it is recommended to use squash commits.
 Merging pull requests are equivalent to a "pull" of a contributor's branch:


[8/9] incubator-rocketmq-site git commit: Merge branch 'master' into asf-site

Posted by yu...@apache.org.
Merge branch 'master' into asf-site


Project: http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/commit/27a89cdf
Tree: http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/tree/27a89cdf
Diff: http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/diff/27a89cdf

Branch: refs/heads/asf-site
Commit: 27a89cdf617c561a40733fb20b3e896f22a8b249
Parents: de85b26 2b7aacd
Author: yukon <yu...@apache.org>
Authored: Fri Sep 15 20:34:19 2017 +0800
Committer: yukon <yu...@apache.org>
Committed: Fri Sep 15 20:34:19 2017 +0800

----------------------------------------------------------------------
 README.md                              |   2 +-
 _about/01-team.md                      |  21 ++++++++++-----------
 _docs/06-best-practice-pull-request.md |   2 +-
 _docs/08-release-manual.md             |   4 ++--
 assets/images/about/Jaskey.jpeg        | Bin 2080 -> 2476 bytes
 assets/images/about/brianm.jpeg        | Bin 2818 -> 0 bytes
 assets/images/about/dongeforever.jpeg  | Bin 23023 -> 3239 bytes
 assets/images/about/jim.jpg            | Bin 7668 -> 2662 bytes
 assets/images/about/lukehan.jpeg       | Bin 2871 -> 0 bytes
 assets/images/about/vsair.png          | Bin 14747 -> 15200 bytes
 home.md                                |   3 ---
 11 files changed, 14 insertions(+), 18 deletions(-)
----------------------------------------------------------------------



[2/9] incubator-rocketmq-site git commit: Change customer tu users

Posted by yu...@apache.org.
Change customer tu users


Project: http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/commit/92fc39f4
Tree: http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/tree/92fc39f4
Diff: http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/diff/92fc39f4

Branch: refs/heads/asf-site
Commit: 92fc39f487628ffd4685d0a82a4a4e9b7fb8b605
Parents: 3a39b1b
Author: yukon <yu...@apache.org>
Authored: Fri Aug 18 22:26:30 2017 +0800
Committer: yukon <yu...@apache.org>
Committed: Fri Aug 18 22:26:30 2017 +0800

----------------------------------------------------------------------
 _about/01-team.md    |  2 +-
 _data/navigation.yml |  4 ++--
 _pages/customer.md   | 60 -----------------------------------------------
 _pages/users.md      | 60 +++++++++++++++++++++++++++++++++++++++++++++++
 4 files changed, 63 insertions(+), 63 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/blob/92fc39f4/_about/01-team.md
----------------------------------------------------------------------
diff --git a/_about/01-team.md b/_about/01-team.md
index e329c13..7a6b9ad 100644
--- a/_about/01-team.md
+++ b/_about/01-team.md
@@ -24,7 +24,7 @@ The following is a list of developers with commit privileges that have directly
 |![zhouxinyu](/assets/images/about/zhouxinyu.png)|yukon|[@zhouxinyu](https://github.com/zhouxinyu)|yukon@apache.org |Committer/PMC Member| +8 |
 |![lizhanhui](/assets/images/about/lizhanhui.jpg)|lizhanhui|[@lizhanhui](https://github.com/lizhanhui)|lizhanhui@apache.org |Committer/PMC Member| +8 |
 |![dongeforever](/assets/images/about/dongeforever.jpeg)|dongeforever|[@dongeforever](https://github.com/dongeforever)|dongeforever@apache.org |Committer/PMC Member| +8 |
-|![lollipop](/assets/images/about/lollipop.jpeg)|lollipop|[@lollipopjin](https://github.com/lollipopjin)|lollipop@apache.org |Committer| +8 |
+|![lollipop](/assets/images/about/lollipop.jpeg)|lollipop|[@lollipopjin](https://github.com/lollipopjin)|lollipop@apache.org |Committer/PMC Member| +8 |
 |![stevensche](/assets/images/about/stevenschew.png)|stevenschew|[@stevenschew](https://github.com/stevenschew)|stevenschew@apache.org |Committer| +8 |
 |![longdafeng](/assets/images/about/longdafeng.jpeg)|longda|[@longdafeng](https://github.com/longdafeng)|longda@apache.org |Committer| +8 |
 |![shroman](/assets/images/about/rshtykh.png)|shroman|[@shroman](https://github.com/shroman)|shroman@apache.org |Committer| +9 |

http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/blob/92fc39f4/_data/navigation.yml
----------------------------------------------------------------------
diff --git a/_data/navigation.yml b/_data/navigation.yml
index 99e4890..4e5c03f 100644
--- a/_data/navigation.yml
+++ b/_data/navigation.yml
@@ -6,8 +6,8 @@ main:
     url: /year-archive/
   - title: "Community"
     url: /community/
-  - title: "Customer"
-    url: /customer/
+  - title: "Users"
+    url: /users/
   - title: "About"
     url: /about/team/
   # - title: "Sample Collections"

http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/blob/92fc39f4/_pages/customer.md
----------------------------------------------------------------------
diff --git a/_pages/customer.md b/_pages/customer.md
deleted file mode 100644
index e70388b..0000000
--- a/_pages/customer.md
+++ /dev/null
@@ -1,60 +0,0 @@
----
-layout: splash
-permalink: /customer/
-title: "Apache RocketMQ"
-header:
-  overlay_color: "#5e616c"
-  overlay_image: /assets/images/rmq-home-page.jpg
-  cta_label: "<i class='fa fa-rocket'></i> Getting Started"
-  cta_url: "/docs/quick-start/"
-  caption:
-excerpt: 'Apache RocketMQ™ is an open source distributed messaging and streaming data platform.<br /> <small><a href="/release_notes/release-notes-4.0.0-incubating/">Latest release v4.0.0-incubating</a></small><br /><br /> {::nomarkdown}<iframe style="display: inline-block;" src="https://ghbtns.com/github-btn.html?user=apache&repo=incubator-rocketmq&type=star&count=true&size=large" frameborder="0" scrolling="0" width="160px" height="30px"></iframe> <iframe style="display: inline-block;" src="https://ghbtns.com/github-btn.html?user=apache&repo=incubator-rocketmq&type=fork&count=true&size=large" frameborder="0" scrolling="0" width="158px" height="30px"></iframe>{:/nomarkdown}'
-feature_row:
-  - image_path: /assets/images/community/alibaba-logo.png
-    alt: "Alibaba Group"
-  - image_path: /assets/images/community/ant-logo.png
-    alt: "China Telecom Group"
-  - image_path: /assets/images/community/webank-logo.png
-    alt: "WeBank Group"
-feature_row1:
-  - image_path: /assets/images/community/didi-logo.png
-    alt: "DiDi Group"
-  - image_path: /assets/images/community/yeahmobi-logo.png
-    alt: "YeahMobi Group"
-  - image_path: /assets/images/community/egov-logo.png
-    alt: "Egov Group"
-feature_row2:
-  - image_path: /assets/images/community/china-telecom-logo.png
-    alt: "China Telecom Group"
-  - image_path: /assets/images/community/media-logo.jpg
-    alt: "Media Group"
-  - image_path: /assets/images/community/decent-logo.png
-    alt: "Decent Group"
-feature_row3:
-  - image_path: /assets/images/community/yunpan-logo.png
-    alt: "Yunpan Group"
-  - image_path: /assets/images/community/shihai-logo.jpg
-    alt: "Shihai Group"
-  - image_path: /assets/images/community/tree-logo.png
-    alt: "Tree Finance Group"
-feature_row4:
-  - image_path: /assets/images/community/yhsoft-logo.png
-    alt: "YH software Group"
-  - image_path: /assets/images/community/fenqile-logo.png
-    alt: "Fenqile Group"
-
-intro:
-  - excerpt: "Who uses Apache RocketMQ ? &nbsp;"
----
-
-{% include feature_row id="intro" type="center" %}
-
-{% include feature_row %}
-
-{% include feature_row id="feature_row1" %}
-
-{% include feature_row id="feature_row2" %}
-
-{% include feature_row id="feature_row3" %}
-
-{% include feature_row id="feature_row4" %}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/blob/92fc39f4/_pages/users.md
----------------------------------------------------------------------
diff --git a/_pages/users.md b/_pages/users.md
new file mode 100644
index 0000000..78406c5
--- /dev/null
+++ b/_pages/users.md
@@ -0,0 +1,60 @@
+---
+layout: splash
+permalink: /users/
+title: "Apache RocketMQ"
+header:
+  overlay_color: "#5e616c"
+  overlay_image: /assets/images/rmq-home-page.jpg
+  cta_label: "<i class='fa fa-rocket'></i> Getting Started"
+  cta_url: "/docs/quick-start/"
+  caption:
+excerpt: 'Apache RocketMQ™ is an open source distributed messaging and streaming data platform.<br /> <small><a href="/release_notes/release-notes-4.0.0-incubating/">Latest release v4.0.0-incubating</a></small><br /><br /> {::nomarkdown}<iframe style="display: inline-block;" src="https://ghbtns.com/github-btn.html?user=apache&repo=incubator-rocketmq&type=star&count=true&size=large" frameborder="0" scrolling="0" width="160px" height="30px"></iframe> <iframe style="display: inline-block;" src="https://ghbtns.com/github-btn.html?user=apache&repo=incubator-rocketmq&type=fork&count=true&size=large" frameborder="0" scrolling="0" width="158px" height="30px"></iframe>{:/nomarkdown}'
+feature_row:
+  - image_path: /assets/images/community/alibaba-logo.png
+    alt: "Alibaba Group"
+  - image_path: /assets/images/community/ant-logo.png
+    alt: "China Telecom Group"
+  - image_path: /assets/images/community/webank-logo.png
+    alt: "WeBank Group"
+feature_row1:
+  - image_path: /assets/images/community/didi-logo.png
+    alt: "DiDi Group"
+  - image_path: /assets/images/community/yeahmobi-logo.png
+    alt: "YeahMobi Group"
+  - image_path: /assets/images/community/egov-logo.png
+    alt: "Egov Group"
+feature_row2:
+  - image_path: /assets/images/community/china-telecom-logo.png
+    alt: "China Telecom Group"
+  - image_path: /assets/images/community/media-logo.jpg
+    alt: "Media Group"
+  - image_path: /assets/images/community/decent-logo.png
+    alt: "Decent Group"
+feature_row3:
+  - image_path: /assets/images/community/yunpan-logo.png
+    alt: "Yunpan Group"
+  - image_path: /assets/images/community/shihai-logo.jpg
+    alt: "Shihai Group"
+  - image_path: /assets/images/community/tree-logo.png
+    alt: "Tree Finance Group"
+feature_row4:
+  - image_path: /assets/images/community/yhsoft-logo.png
+    alt: "YH software Group"
+  - image_path: /assets/images/community/fenqile-logo.png
+    alt: "Fenqile Group"
+
+intro:
+  - excerpt: "Who uses Apache RocketMQ ? &nbsp;"
+---
+
+{% include feature_row id="intro" type="center" %}
+
+{% include feature_row %}
+
+{% include feature_row id="feature_row1" %}
+
+{% include feature_row id="feature_row2" %}
+
+{% include feature_row id="feature_row3" %}
+
+{% include feature_row id="feature_row4" %}
\ No newline at end of file


[7/9] incubator-rocketmq-site git commit: First clean up for TLP

Posted by yu...@apache.org.
First clean up for TLP


Project: http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/commit/2b7aacd2
Tree: http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/tree/2b7aacd2
Diff: http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/diff/2b7aacd2

Branch: refs/heads/asf-site
Commit: 2b7aacd243969ac1f6ffe2c4ced222980ad20b48
Parents: e194d2b
Author: yukon <yu...@apache.org>
Authored: Fri Sep 15 20:32:06 2017 +0800
Committer: yukon <yu...@apache.org>
Committed: Fri Sep 15 20:32:06 2017 +0800

----------------------------------------------------------------------
 README.md                              |   2 +-
 _about/01-team.md                      |  21 ++++++++++-----------
 _docs/06-best-practice-pull-request.md |   2 +-
 _docs/08-release-manual.md             |   4 ++--
 assets/images/about/Jaskey.jpeg        | Bin 2080 -> 2476 bytes
 assets/images/about/brianm.jpeg        | Bin 2818 -> 0 bytes
 assets/images/about/dongeforever.jpeg  | Bin 23023 -> 3239 bytes
 assets/images/about/jim.jpg            | Bin 7668 -> 2662 bytes
 assets/images/about/lukehan.jpeg       | Bin 2871 -> 0 bytes
 assets/images/about/vsair.png          | Bin 14747 -> 15200 bytes
 home.md                                |   3 ---
 11 files changed, 14 insertions(+), 18 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/blob/2b7aacd2/README.md
----------------------------------------------------------------------
diff --git a/README.md b/README.md
index 1e77b07..0e002cb 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
 # Apache RocketMQ (incubating) website
 
-This is the website for [Apache RocketMQ](	http://rocketmq.incubator.apache.org/) (incubating).
+This is the website for [Apache RocketMQ](	http://rocketmq.apache.org/) (incubating).
 
 ## About
 This website is based on Jekyll and a Jekyll theme named Minimal Mistakes.

http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/blob/2b7aacd2/_about/01-team.md
----------------------------------------------------------------------
diff --git a/_about/01-team.md b/_about/01-team.md
index 7a6b9ad..a1b7b5f 100644
--- a/_about/01-team.md
+++ b/_about/01-team.md
@@ -14,17 +14,16 @@ The following is a list of developers with commit privileges that have directly
 
 |Image| Id| Github Id | Email |[Roles](https://www.apache.org/foundation/how-it-works.html#roles)| Time Zone|
 |:---|:---|:---|:---|:---|:---|
-|![bsnyde](/assets/images/about/bsnyder.jpeg)|bsnyder| [@bsnyder](https://github.com/bsnyder)|bsnyder@apache.org |Mentor| -7 |
-|![justinmclean](/assets/images/about/justinmclean.jpeg)|jmclean| [@justinmclean](https://github.com/justinmclean)|jmclean@apache.org |Mentor| +11 |
-|![jim](/assets/images/about/jim.jpg)|jim| [@jim](https://github.com/jimjag)|jim@apache.org |Mentor| -7 |
-|![WillemJiang](/assets/images/about/WillemJiang.jpeg)|ningjiang| [@WillemJiang](https://github.com/WillemJiang)|ningjiang@apache.org |Mentor| +8 |
-|![lukehan](/assets/images/about/lukehan.jpeg)|lukehan| [@lukehan](https://github.com/lukehan)|lukehan@apache.org |Mentor| +8 |
-|![vongosling](/assets/images/about/vongosling.jpeg)|vongosling|[@vongosling](https://github.com/vongosling)|vongosling@apache.org |Committer/PMC Member| +8 |
-|![vintagewang](/assets/images/about/vintagewang.jpeg)|vintagewang|[@vintagewang](https://github.com/vintagewang)|vintagewang@apache.org |Committer/PMC Member| +8|
-|![zhouxinyu](/assets/images/about/zhouxinyu.png)|yukon|[@zhouxinyu](https://github.com/zhouxinyu)|yukon@apache.org |Committer/PMC Member| +8 |
-|![lizhanhui](/assets/images/about/lizhanhui.jpg)|lizhanhui|[@lizhanhui](https://github.com/lizhanhui)|lizhanhui@apache.org |Committer/PMC Member| +8 |
-|![dongeforever](/assets/images/about/dongeforever.jpeg)|dongeforever|[@dongeforever](https://github.com/dongeforever)|dongeforever@apache.org |Committer/PMC Member| +8 |
-|![lollipop](/assets/images/about/lollipop.jpeg)|lollipop|[@lollipopjin](https://github.com/lollipopjin)|lollipop@apache.org |Committer/PMC Member| +8 |
+|![bsnyde](/assets/images/about/bsnyder.jpeg)|bsnyder| [@bsnyder](https://github.com/bsnyder)|bsnyder@apache.org |PMC Member| -7 |
+|![justinmclean](/assets/images/about/justinmclean.jpeg)|jmclean| [@justinmclean](https://github.com/justinmclean)|jmclean@apache.org |PMC Member| +11 |
+|![jim](/assets/images/about/jim.jpg)|jim| [@jim](https://github.com/jimjag)|jim@apache.org |PMC Member| -7 |
+|![WillemJiang](/assets/images/about/WillemJiang.jpeg)|ningjiang| [@WillemJiang](https://github.com/WillemJiang)|ningjiang@apache.org |PMC Member| +8 |
+|![vongosling](/assets/images/about/vongosling.jpeg)|vongosling|[@vongosling](https://github.com/vongosling)|vongosling@apache.org |PMC Member| +8 |
+|![vintagewang](/assets/images/about/vintagewang.jpeg)|vintagewang|[@vintagewang](https://github.com/vintagewang)|vintagewang@apache.org |PMC Member| +8|
+|![zhouxinyu](/assets/images/about/zhouxinyu.png)|yukon|[@zhouxinyu](https://github.com/zhouxinyu)|yukon@apache.org |PMC Member| +8 |
+|![lizhanhui](/assets/images/about/lizhanhui.jpg)|lizhanhui|[@lizhanhui](https://github.com/lizhanhui)|lizhanhui@apache.org |PMC Member| +8 |
+|![dongeforever](/assets/images/about/dongeforever.jpeg)|dongeforever|[@dongeforever](https://github.com/dongeforever)|dongeforever@apache.org |PMC Member| +8 |
+|![lollipop](/assets/images/about/lollipop.jpeg)|lollipop|[@lollipopjin](https://github.com/lollipopjin)|lollipop@apache.org |PMC Member| +8 |
 |![stevensche](/assets/images/about/stevenschew.png)|stevenschew|[@stevenschew](https://github.com/stevenschew)|stevenschew@apache.org |Committer| +8 |
 |![longdafeng](/assets/images/about/longdafeng.jpeg)|longda|[@longdafeng](https://github.com/longdafeng)|longda@apache.org |Committer| +8 |
 |![shroman](/assets/images/about/rshtykh.png)|shroman|[@shroman](https://github.com/shroman)|shroman@apache.org |Committer| +9 |

http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/blob/2b7aacd2/_docs/06-best-practice-pull-request.md
----------------------------------------------------------------------
diff --git a/_docs/06-best-practice-pull-request.md b/_docs/06-best-practice-pull-request.md
index 084cbf8..0448732 100644
--- a/_docs/06-best-practice-pull-request.md
+++ b/_docs/06-best-practice-pull-request.md
@@ -97,7 +97,7 @@ Each pull request should follow this checklist to help us incorporate your contr
 
 ```
 
-Remember use `- [x]` mark a item finished in the check list and there is a [demo pull request](https://github.com/apache/incubator-rocketmq/pull/152) can be your reference. 
+Remember use `- [x]` mark an item finished in the check list and there is a [demo pull request](https://github.com/apache/incubator-rocketmq/pull/152) can be your reference. 
 
 # Merging a PR (yours or contributors)
 Start with reading [GitHub PR merging locally](https://help.github.com/articles/checking-out-pull-requests-locally/). Remember that pull requests are equivalent to a remote github branch with potentially a multitude of commits. In this case it is recommended to squash remote commit history to have one commit per issue, rather than merging in a multitude of contributor's commits. In order to do that, as well as to close the PR at the same time, it is recommended to use squash commits.

http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/blob/2b7aacd2/_docs/08-release-manual.md
----------------------------------------------------------------------
diff --git a/_docs/08-release-manual.md b/_docs/08-release-manual.md
index 428ef80..629753d 100644
--- a/_docs/08-release-manual.md
+++ b/_docs/08-release-manual.md
@@ -73,7 +73,7 @@ Make sure your Maven settings.xml file contains the following:
 Cleanup JIRA issues related to this release version, and check all the issues has been marked with right version in the `FixVersion` field.
 
 ### Publish the Release Notes
-Generate the release notes via [RocketMQ JIRA](https://issues.apache.org/jira/browse/ROCKETMQ/) and publish it to the [rocketmq-site](https://github.com/apache/incubator-rocketmq-site), there is a [release notes](http://rocketmq.incubator.apache.org/release_notes/release-notes-4.0.0-incubating/) of `4.0.0-incubating` available for reference, include the link to the release notes in the voting emails.
+Generate the release notes via [RocketMQ JIRA](https://issues.apache.org/jira/browse/ROCKETMQ/) and publish it to the [rocketmq-site](https://github.com/apache/incubator-rocketmq-site), there is a [release notes](http://rocketmq.apache.org/release_notes/release-notes-4.0.0-incubating/) of `4.0.0-incubating` available for reference, include the link to the release notes in the voting emails.
 
 ## Build the Release Candidate
 Firstly, checkout a new branch from `master` with its name equal to the release version, like `release-4.0.0-incubating`.
@@ -288,7 +288,7 @@ Send an email to **announce@apache.org**, **general@incubator.apache.org**, and
 > The Apache RocketMQ team would like to announce the release of Apache RocketMQ \<release version\> (incubating).  
 >
 > More details regarding Apache RocketMQ can be found at:  
-> http://rocketmq.incubator.apache.org/  
+> http://rocketmq.apache.org/  
 >
 > The release artifacts can be downloaded here:  
 > https://dist.apache.org/repos/dist/release/incubator/rocketmq/${release version}  

http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/blob/2b7aacd2/assets/images/about/Jaskey.jpeg
----------------------------------------------------------------------
diff --git a/assets/images/about/Jaskey.jpeg b/assets/images/about/Jaskey.jpeg
index 8fdfec1..bcda98b 100644
Binary files a/assets/images/about/Jaskey.jpeg and b/assets/images/about/Jaskey.jpeg differ

http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/blob/2b7aacd2/assets/images/about/brianm.jpeg
----------------------------------------------------------------------
diff --git a/assets/images/about/brianm.jpeg b/assets/images/about/brianm.jpeg
deleted file mode 100644
index 4f3c3cf..0000000
Binary files a/assets/images/about/brianm.jpeg and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/blob/2b7aacd2/assets/images/about/dongeforever.jpeg
----------------------------------------------------------------------
diff --git a/assets/images/about/dongeforever.jpeg b/assets/images/about/dongeforever.jpeg
index 71250c0..78124fb 100644
Binary files a/assets/images/about/dongeforever.jpeg and b/assets/images/about/dongeforever.jpeg differ

http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/blob/2b7aacd2/assets/images/about/jim.jpg
----------------------------------------------------------------------
diff --git a/assets/images/about/jim.jpg b/assets/images/about/jim.jpg
index 159869a..f28198b 100644
Binary files a/assets/images/about/jim.jpg and b/assets/images/about/jim.jpg differ

http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/blob/2b7aacd2/assets/images/about/lukehan.jpeg
----------------------------------------------------------------------
diff --git a/assets/images/about/lukehan.jpeg b/assets/images/about/lukehan.jpeg
deleted file mode 100644
index 758ae60..0000000
Binary files a/assets/images/about/lukehan.jpeg and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/blob/2b7aacd2/assets/images/about/vsair.png
----------------------------------------------------------------------
diff --git a/assets/images/about/vsair.png b/assets/images/about/vsair.png
index 5ca3fca..5107b15 100644
Binary files a/assets/images/about/vsair.png and b/assets/images/about/vsair.png differ

http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/blob/2b7aacd2/home.md
----------------------------------------------------------------------
diff --git a/home.md b/home.md
index e12e016..36f8081 100644
--- a/home.md
+++ b/home.md
@@ -40,6 +40,3 @@ feature_row1:
 {% include feature_row %}
 
 {% include feature_row id="feature_row1" %}
-
-## Disclaimer
-Apache RocketMQ is an effort undergoing incubation at The Apache Software Foundation (ASF), sponsored by Incubator. Incubation is required of all newly accepted projects until a further review indicates that the infrastructure, communications, and decision making process have stabilized in a manner consistent with other successful ASF projects. While incubation status is not necessarily a reflection of the completeness or stability of the code, it does indicate that the project has yet to be fully endorsed by the ASF.


[4/9] incubator-rocketmq-site git commit: Add a doc: How To Contribute

Posted by yu...@apache.org.
Add a doc: How To Contribute


Project: http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/commit/52516e2b
Tree: http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/tree/52516e2b
Diff: http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/diff/52516e2b

Branch: refs/heads/asf-site
Commit: 52516e2b87dad7e727505bcab8334014221f9609
Parents: 77bf383
Author: yukon <yu...@apache.org>
Authored: Wed Aug 23 20:02:20 2017 +0800
Committer: yukon <yu...@apache.org>
Committed: Wed Aug 23 20:02:20 2017 +0800

----------------------------------------------------------------------
 _data/navigation.yml          |   2 +
 _docs/24-how-to-contribute.md | 105 +++++++++++++++++++++++++++++++++++++
 2 files changed, 107 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/blob/52516e2b/_data/navigation.yml
----------------------------------------------------------------------
diff --git a/_data/navigation.yml b/_data/navigation.yml
index 4e5c03f..439cce8 100644
--- a/_data/navigation.yml
+++ b/_data/navigation.yml
@@ -53,6 +53,8 @@ docs:
 
   - title: Contributor Guide
     children:
+      - title: "How To Contribute"
+        url: "/docs/how-to-contribute/"
       - title: "Code Guidelines"
         url: /docs/code-guidelines/
       #- title: "Branching Model"

http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/blob/52516e2b/_docs/24-how-to-contribute.md
----------------------------------------------------------------------
diff --git a/_docs/24-how-to-contribute.md b/_docs/24-how-to-contribute.md
new file mode 100644
index 0000000..c49f211
--- /dev/null
+++ b/_docs/24-how-to-contribute.md
@@ -0,0 +1,105 @@
+---
+title: "How To Contribute"
+permalink: /docs/how-to-contribute/
+modified: 2017-8-23T15:01:43-04:00
+---
+
+Apache RocketMQ is developed by an open and friendly community. Everybody is cordially welcome to join the community and contribute to Apache RocketMQ. There are several ways to interact with the community and to contribute to RocketMQ including asking questions, filing bug reports, proposing new features, joining discussions on the mailing lists, contributing code or documentation, improving the website, or testing release candidates.
+
+{% include toc %}
+
+## Ask questions!
+The Apache RocketMQ community is eager to help and to answer your questions. We have a [user mailing list](/about/contact/) and [apache-rocketmq](https://stackoverflow.com/questions/tagged/rocketmq) tag on Stack Overflow.
+
+## File a bug report
+Please let us know if you experienced a problem with RocketMQ and file a bug report. Open [JIRA Issue](https://issues.apache.org/jira/projects/ROCKETMQ) and click on the blue Create button at the top. Please give detailed information about the problem you encountered and, if possible, add a description that helps to reproduce the problem. Thank you very much.
+
+## Propose an improvement or a new feature
+
+Our community is constantly looking for feedback to improve Apache RocketMQ. If you have an idea how to improve RocketMQ or have a new feature in mind that would be beneficial for RocketMQ users, please open an issue in [RocketMQ’s JIRA](https://issues.apache.org/jira/projects/ROCKETMQ). The improvement or new feature should be described in appropriate detail and include the scope and its requirements if possible. Detailed information is important for a few reasons:
+
+* It ensures your requirements are met when the improvement or feature is implemented.
+* It helps to estimate the effort and to design a solution that addresses your needs.
+* It allow for constructive discussions that might arise around this issue.
+
+Detailed information is also required, if you plan to contribute the improvement or feature you proposed yourself. Please read the Contribute [code guide](/docs/code-guidelines/) in this case as well.
+
+We recommend to first reach consensus with the community on whether a new feature is required and how to implement a new feature, before starting with the implementation. Some features might be out of scope of the project, and it’s best to discover this early.
+
+## Help others and join the discussions
+Most communication in the Apache RocketMQ community happens on two mailing lists:
+
+* The user mailing lists users@rocketmq.apache.org is the place where users of Apache RocketMQ ask questions and seek for help or advice. Joining the user list and helping other users is a very good way to contribute to RocketMQ’s community. Furthermore, there is the [apache-rocketmq](https://stackoverflow.com/questions/tagged/rocketmq) tag on Stack Overflow if you’d like to help RocketMQ users (and harvest some points) there.
+* The development mailing list dev@rocketmq.apache.org is the place where RocketMQ developers exchange ideas and discuss new features, upcoming releases, and the development process in general. If you are interested in contributing code to RocketMQ, you should join this mailing list.
+
+You are very welcome to subscribe to both [mailing lists](/about/contact/).
+
+## Test a release candidate
+
+Apache RocketMQ is continuously improved by its active community. Every few weeks, we release a new version of Apache RocketMQ with bug fixes, improvements, and new features. The process of releasing a new version consists of the following steps:
+
+1. Building a new release candidate and starting a vote (usually for 72 hours).
+2. Testing the release candidate and voting (+1 if no issues were found, -1 if the release candidate has issues).
+3. Going back to step 1 if the release candidate had issues otherwise we publish the release.
+Our site contains a page that summarizes the [test procedure for a release](/docs/release-manual). Release testing is a big effort if done by a small group of people but can be easily scaled out to more people. The RocketMQ community encourages everybody to participate in the testing of a release candidate. By testing a release candidate, you can ensure that the next RocketMQ release is working properly for your setup and help to improve the quality of releases.
+
+## Contribute code
+
+Apache RocketMQ is maintained, improved, and extended by code contributions of volunteers. The Apache RocketMQ community encourages anybody to contribute source code. In order to ensure a pleasant contribution experience for contributors and reviewers and to preserve the high quality of the code base, we follow a contribution process that is explained in our Contribute [code guide](/docs/code-guidelines/). The guide does also include instructions to setup a development environment, our coding guidelines and code style, and explains how to submit a code contribution.
+
+**Please read the Contribute [code guide](/docs/code-guidelines/) before you start to work on a code contribution.**
+
+Please do also read the Submit a [Contributor License Agreement Section](http://www.apache.org/licenses/#clas).
+
+Looking for an issue to work on?
+
+We maintain a list of all known bugs, proposed improvements and suggested features in [RocketMQ’s JIRA](https://issues.apache.org/jira/projects/ROCKETMQ).
+
+## Contribute documentation
+
+Good documentation is crucial for any kind of software. The Apache RocketMQ community aims to provide concise, precise, and complete documentation and welcomes any contribution to improve Apache RocketMQ’s documentation.
+
+* Please report missing, incorrect, or out-dated documentation as a [JIRA ISSUE](https://issues.apache.org/jira/projects/ROCKETMQ).
+* RocketMQ’s documentation is written in Markdown and located in the docs folder in RocketMQ’s [site source code repository](https://github.com/apache/incubator-rocketmq-site). See the Contribute [documentation guidelines](/docs/code-guidelines/) for detailed instructions for how to update and improve the documentation and to contribute your changes.
+
+## Improve the website
+
+The Apache RocketMQ website presents Apache RocketMQ and its community. It serves several purposes including:
+
+* Informing visitors about Apache RocketMQ and its features.
+* Encouraging visitors to download and use RocketMQ.
+* Encouraging visitors to engage with the community.
+
+We welcome any contribution to improve our website.
+
+Please open a [JIRA issue](https://issues.apache.org/jira/projects/ROCKETMQ) if you think our website could be improved.
+Please follow the Improve the [website guidelines](https://github.com/apache/incubator-rocketmq-site) if you would like to update and improve the website.
+
+## More ways to contribute…
+
+There are many more ways to contribute to the RocketMQ community. For example you can
+
+* give a talk about RocketMQ and tell others how you use it.
+* organize a local Meetup or user group.
+* talk to people about RocketMQ.
+* …
+
+## How to become a committer
+
+Committers are community members that have write access to the project’s repositories, i.e., they can modify the code, documentation, and website by themselves and also accept other contributions.
+
+There is no strict protocol for becoming a committer. Candidates for new committers are typically people that are active contributors and community members.
+
+Being an active community member means participating on mailing list discussions, helping to answer questions, verifying release candidates, being respectful towards others, and following the meritocratic principles of community management. Since the “Apache Way” has a strong focus on the project community, this part is very important.
+
+Of course, contributing code and documentation to the project is important as well. A good way to start is contributing improvements, new features, or bug fixes. You need to show that you take responsibility for the code that you contribute, add tests and documentation, and help maintaining it.
+
+Candidates for new committers are suggested by current committers or PMC members, and voted upon by the PMC.
+
+If you would like to become a committer, you should engage with the community and start contributing to Apache RocketMQ in any of the above ways. You might also want to talk to other committers and ask for their advice and guidance.
+
+## Reference
+
+This document is a modified version of the one created by the Flink Project[1].
+
+[1]. http://flink.apache.org/how-to-contribute.html


[9/9] incubator-rocketmq-site git commit: Release at 20170915

Posted by yu...@apache.org.
Release at 20170915


Project: http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/commit/4a0f5236
Tree: http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/tree/4a0f5236
Diff: http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/diff/4a0f5236

Branch: refs/heads/asf-site
Commit: 4a0f5236f8e98843821fb8f0665690dc6ae24500
Parents: 27a89cd
Author: yukon <yu...@apache.org>
Authored: Fri Sep 15 20:35:01 2017 +0800
Committer: yukon <yu...@apache.org>
Committed: Fri Sep 15 20:35:01 2017 +0800

----------------------------------------------------------------------
 content/about/contact/index.html                |   4 +--
 content/about/rewards/index.html                |   4 +--
 content/about/team/index.html                   |  32 +++++++------------
 content/assets/images/about/Jaskey.jpeg         | Bin 2080 -> 2476 bytes
 content/assets/images/about/brianm.jpeg         | Bin 2818 -> 0 bytes
 content/assets/images/about/dongeforever.jpeg   | Bin 23023 -> 3239 bytes
 content/assets/images/about/jim.jpg             | Bin 7668 -> 2662 bytes
 content/assets/images/about/lukehan.jpeg        | Bin 2871 -> 0 bytes
 content/assets/images/about/vsair.png           | Bin 14747 -> 15200 bytes
 content/docs/batch-example/index.html           |   4 +--
 content/docs/best-practice-broker/index.html    |   4 +--
 content/docs/best-practice-consumer/index.html  |   4 +--
 content/docs/best-practice-namesvr/index.html   |   4 +--
 content/docs/best-practice-producer/index.html  |   4 +--
 content/docs/broadcast-example/index.html       |   4 +--
 content/docs/cli-admin-tool/index.html          |   4 +--
 content/docs/cluster-deployment/index.html      |   4 +--
 content/docs/code-guidelines/index.html         |   4 +--
 content/docs/core-concept/index.html            |   4 +--
 content/docs/create-pull-request/index.html     |   4 +--
 content/docs/documentation/index.html           |   4 +--
 content/docs/faq/index.html                     |   4 +--
 content/docs/filter-by-sql92-example/index.html |   4 +--
 content/docs/how-to-contribute/index.html       |   4 +--
 content/docs/logappender-example/index.html     |   4 +--
 content/docs/motivation/index.html              |   4 +--
 content/docs/openmessaging-example/index.html   |   4 +--
 content/docs/order-example/index.html           |   4 +--
 content/docs/pull-request/index.html            |   6 ++--
 content/docs/quick-start/index.html             |   4 +--
 content/docs/release-manual.html                |   8 ++---
 content/docs/rmq-arc/index.html                 |   4 +--
 content/docs/rmq-deployment/index.html          |   4 +--
 content/docs/roadmap/index.html                 |   4 +--
 content/docs/schedule-example/index.html        |   4 +--
 content/docs/simple-example/index.html          |   4 +--
 content/docs/system-config/index.html           |   4 +--
 content/dowloading/releases/index.html          |   4 +--
 content/feed.xml                                |   2 +-
 content/index.html                              |   3 --
 40 files changed, 78 insertions(+), 89 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/blob/4a0f5236/content/about/contact/index.html
----------------------------------------------------------------------
diff --git a/content/about/contact/index.html b/content/about/contact/index.html
index 773e713..c5d88d4 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="2017-09-07T14:22:07+08:00">
+  <meta property="article:published_time" content="2017-09-15T20:34:32+08:00">
 
 
 
@@ -212,7 +212,7 @@
   <article class="page" itemscope itemtype="http://schema.org/CreativeWork">
     <meta itemprop="headline" content="CONTACT">
     <meta itemprop="description" content="Contact.">
-    <meta itemprop="datePublished" content="September 07, 2017">
+    <meta itemprop="datePublished" content="September 15, 2017">
     <meta itemprop="dateModified" content="December 29, 2016">
 
     <div class="page__inner-wrap">

http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/blob/4a0f5236/content/about/rewards/index.html
----------------------------------------------------------------------
diff --git a/content/about/rewards/index.html b/content/about/rewards/index.html
index 9dc4fd9..afe4b2f 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="2017-09-07T14:22:07+08:00">
+  <meta property="article:published_time" content="2017-09-15T20:34:32+08:00">
 
 
 
@@ -212,7 +212,7 @@
   <article class="page" itemscope itemtype="http://schema.org/CreativeWork">
     <meta itemprop="headline" content="REWARDS">
     <meta itemprop="description" content="Rewards.">
-    <meta itemprop="datePublished" content="September 07, 2017">
+    <meta itemprop="datePublished" content="September 15, 2017">
     <meta itemprop="dateModified" content="January 25, 2017">
 
     <div class="page__inner-wrap">

http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/blob/4a0f5236/content/about/team/index.html
----------------------------------------------------------------------
diff --git a/content/about/team/index.html b/content/about/team/index.html
index 5274ec2..777f4e3 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="2017-09-07T14:22:07+08:00">
+  <meta property="article:published_time" content="2017-09-15T20:34:32+08:00">
 
 
 
@@ -212,7 +212,7 @@
   <article class="page" itemscope itemtype="http://schema.org/CreativeWork">
     <meta itemprop="headline" content="TEAM">
     <meta itemprop="description" content="Project team.">
-    <meta itemprop="datePublished" content="September 07, 2017">
+    <meta itemprop="datePublished" content="September 15, 2017">
     <meta itemprop="dateModified" content="December 29, 2016">
 
     <div class="page__inner-wrap">
@@ -248,7 +248,7 @@
       <td style="text-align: left">bsnyder</td>
       <td style="text-align: left"><a href="https://github.com/bsnyder">@bsnyder</a></td>
       <td style="text-align: left">bsnyder@apache.org</td>
-      <td style="text-align: left">Mentor</td>
+      <td style="text-align: left">PMC Member</td>
       <td style="text-align: left">-7</td>
     </tr>
     <tr>
@@ -256,7 +256,7 @@
       <td style="text-align: left">jmclean</td>
       <td style="text-align: left"><a href="https://github.com/justinmclean">@justinmclean</a></td>
       <td style="text-align: left">jmclean@apache.org</td>
-      <td style="text-align: left">Mentor</td>
+      <td style="text-align: left">PMC Member</td>
       <td style="text-align: left">+11</td>
     </tr>
     <tr>
@@ -264,7 +264,7 @@
       <td style="text-align: left">jim</td>
       <td style="text-align: left"><a href="https://github.com/jimjag">@jim</a></td>
       <td style="text-align: left">jim@apache.org</td>
-      <td style="text-align: left">Mentor</td>
+      <td style="text-align: left">PMC Member</td>
       <td style="text-align: left">-7</td>
     </tr>
     <tr>
@@ -272,15 +272,7 @@
       <td style="text-align: left">ningjiang</td>
       <td style="text-align: left"><a href="https://github.com/WillemJiang">@WillemJiang</a></td>
       <td style="text-align: left">ningjiang@apache.org</td>
-      <td style="text-align: left">Mentor</td>
-      <td style="text-align: left">+8</td>
-    </tr>
-    <tr>
-      <td style="text-align: left"><img src="/assets/images/about/lukehan.jpeg" alt="lukehan" /></td>
-      <td style="text-align: left">lukehan</td>
-      <td style="text-align: left"><a href="https://github.com/lukehan">@lukehan</a></td>
-      <td style="text-align: left">lukehan@apache.org</td>
-      <td style="text-align: left">Mentor</td>
+      <td style="text-align: left">PMC Member</td>
       <td style="text-align: left">+8</td>
     </tr>
     <tr>
@@ -288,7 +280,7 @@
       <td style="text-align: left">vongosling</td>
       <td style="text-align: left"><a href="https://github.com/vongosling">@vongosling</a></td>
       <td style="text-align: left">vongosling@apache.org</td>
-      <td style="text-align: left">Committer/PMC Member</td>
+      <td style="text-align: left">PMC Member</td>
       <td style="text-align: left">+8</td>
     </tr>
     <tr>
@@ -296,7 +288,7 @@
       <td style="text-align: left">vintagewang</td>
       <td style="text-align: left"><a href="https://github.com/vintagewang">@vintagewang</a></td>
       <td style="text-align: left">vintagewang@apache.org</td>
-      <td style="text-align: left">Committer/PMC Member</td>
+      <td style="text-align: left">PMC Member</td>
       <td style="text-align: left">+8</td>
     </tr>
     <tr>
@@ -304,7 +296,7 @@
       <td style="text-align: left">yukon</td>
       <td style="text-align: left"><a href="https://github.com/zhouxinyu">@zhouxinyu</a></td>
       <td style="text-align: left">yukon@apache.org</td>
-      <td style="text-align: left">Committer/PMC Member</td>
+      <td style="text-align: left">PMC Member</td>
       <td style="text-align: left">+8</td>
     </tr>
     <tr>
@@ -312,7 +304,7 @@
       <td style="text-align: left">lizhanhui</td>
       <td style="text-align: left"><a href="https://github.com/lizhanhui">@lizhanhui</a></td>
       <td style="text-align: left">lizhanhui@apache.org</td>
-      <td style="text-align: left">Committer/PMC Member</td>
+      <td style="text-align: left">PMC Member</td>
       <td style="text-align: left">+8</td>
     </tr>
     <tr>
@@ -320,7 +312,7 @@
       <td style="text-align: left">dongeforever</td>
       <td style="text-align: left"><a href="https://github.com/dongeforever">@dongeforever</a></td>
       <td style="text-align: left">dongeforever@apache.org</td>
-      <td style="text-align: left">Committer/PMC Member</td>
+      <td style="text-align: left">PMC Member</td>
       <td style="text-align: left">+8</td>
     </tr>
     <tr>
@@ -328,7 +320,7 @@
       <td style="text-align: left">lollipop</td>
       <td style="text-align: left"><a href="https://github.com/lollipopjin">@lollipopjin</a></td>
       <td style="text-align: left">lollipop@apache.org</td>
-      <td style="text-align: left">Committer/PMC Member</td>
+      <td style="text-align: left">PMC Member</td>
       <td style="text-align: left">+8</td>
     </tr>
     <tr>

http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/blob/4a0f5236/content/assets/images/about/Jaskey.jpeg
----------------------------------------------------------------------
diff --git a/content/assets/images/about/Jaskey.jpeg b/content/assets/images/about/Jaskey.jpeg
index 8fdfec1..bcda98b 100644
Binary files a/content/assets/images/about/Jaskey.jpeg and b/content/assets/images/about/Jaskey.jpeg differ

http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/blob/4a0f5236/content/assets/images/about/brianm.jpeg
----------------------------------------------------------------------
diff --git a/content/assets/images/about/brianm.jpeg b/content/assets/images/about/brianm.jpeg
deleted file mode 100644
index 4f3c3cf..0000000
Binary files a/content/assets/images/about/brianm.jpeg and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/blob/4a0f5236/content/assets/images/about/dongeforever.jpeg
----------------------------------------------------------------------
diff --git a/content/assets/images/about/dongeforever.jpeg b/content/assets/images/about/dongeforever.jpeg
index 71250c0..78124fb 100644
Binary files a/content/assets/images/about/dongeforever.jpeg and b/content/assets/images/about/dongeforever.jpeg differ

http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/blob/4a0f5236/content/assets/images/about/jim.jpg
----------------------------------------------------------------------
diff --git a/content/assets/images/about/jim.jpg b/content/assets/images/about/jim.jpg
index 159869a..f28198b 100644
Binary files a/content/assets/images/about/jim.jpg and b/content/assets/images/about/jim.jpg differ

http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/blob/4a0f5236/content/assets/images/about/lukehan.jpeg
----------------------------------------------------------------------
diff --git a/content/assets/images/about/lukehan.jpeg b/content/assets/images/about/lukehan.jpeg
deleted file mode 100644
index 758ae60..0000000
Binary files a/content/assets/images/about/lukehan.jpeg and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/blob/4a0f5236/content/assets/images/about/vsair.png
----------------------------------------------------------------------
diff --git a/content/assets/images/about/vsair.png b/content/assets/images/about/vsair.png
index 5ca3fca..5107b15 100644
Binary files a/content/assets/images/about/vsair.png and b/content/assets/images/about/vsair.png differ

http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/blob/4a0f5236/content/docs/batch-example/index.html
----------------------------------------------------------------------
diff --git a/content/docs/batch-example/index.html b/content/docs/batch-example/index.html
index c95301c..cac5093 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="2017-09-07T14:22:07+08:00">
+  <meta property="article:published_time" content="2017-09-15T20:34:32+08:00">
 
 
 
@@ -466,7 +466,7 @@
   <article class="page" itemscope itemtype="http://schema.org/CreativeWork">
     <meta itemprop="headline" content="Batch Example">
     <meta itemprop="description" content="How to use batch in Rocketmq">
-    <meta itemprop="datePublished" content="September 07, 2017">
+    <meta itemprop="datePublished" content="September 15, 2017">
     <meta itemprop="dateModified" content="April 25, 2017">
 
     <div class="page__inner-wrap">

http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/blob/4a0f5236/content/docs/best-practice-broker/index.html
----------------------------------------------------------------------
diff --git a/content/docs/best-practice-broker/index.html b/content/docs/best-practice-broker/index.html
index e6a8fb8..037e0d1 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="2017-09-07T14:22:07+08:00">
+  <meta property="article:published_time" content="2017-09-15T20:34:32+08:00">
 
 
 
@@ -466,7 +466,7 @@
   <article class="page" itemscope itemtype="http://schema.org/CreativeWork">
     <meta itemprop="headline" content="Best Practice For Broker">
     <meta itemprop="description" content="Some useful tips for users.">
-    <meta itemprop="datePublished" content="September 07, 2017">
+    <meta itemprop="datePublished" content="September 15, 2017">
     <meta itemprop="dateModified" content="December 25, 2016">
 
     <div class="page__inner-wrap">

http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/blob/4a0f5236/content/docs/best-practice-consumer/index.html
----------------------------------------------------------------------
diff --git a/content/docs/best-practice-consumer/index.html b/content/docs/best-practice-consumer/index.html
index 1d5de1c..88304c8 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="2017-09-07T14:22:07+08:00">
+  <meta property="article:published_time" content="2017-09-15T20:34:32+08:00">
 
 
 
@@ -466,7 +466,7 @@
   <article class="page" itemscope itemtype="http://schema.org/CreativeWork">
     <meta itemprop="headline" content="Best Practice For Consumer">
     <meta itemprop="description" content="Some useful tips for users.">
-    <meta itemprop="datePublished" content="September 07, 2017">
+    <meta itemprop="datePublished" content="September 15, 2017">
     <meta itemprop="dateModified" content="December 25, 2016">
 
     <div class="page__inner-wrap">

http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/blob/4a0f5236/content/docs/best-practice-namesvr/index.html
----------------------------------------------------------------------
diff --git a/content/docs/best-practice-namesvr/index.html b/content/docs/best-practice-namesvr/index.html
index 84d2cdc..16c61bf 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="2017-09-07T14:22:07+08:00">
+  <meta property="article:published_time" content="2017-09-15T20:34:32+08:00">
 
 
 
@@ -466,7 +466,7 @@
   <article class="page" itemscope itemtype="http://schema.org/CreativeWork">
     <meta itemprop="headline" content="Best Practice For NameServer">
     <meta itemprop="description" content="In Apache RocketMQ, name servers are designed to coordinate each component of the distributed systemand the coordination is mainly achieved through managing topic routing information.">
-    <meta itemprop="datePublished" content="September 07, 2017">
+    <meta itemprop="datePublished" content="September 15, 2017">
     <meta itemprop="dateModified" content="December 25, 2016">
 
     <div class="page__inner-wrap">

http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/blob/4a0f5236/content/docs/best-practice-producer/index.html
----------------------------------------------------------------------
diff --git a/content/docs/best-practice-producer/index.html b/content/docs/best-practice-producer/index.html
index be16143..b155d85 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="2017-09-07T14:22:07+08:00">
+  <meta property="article:published_time" content="2017-09-15T20:34:32+08:00">
 
 
 
@@ -466,7 +466,7 @@
   <article class="page" itemscope itemtype="http://schema.org/CreativeWork">
     <meta itemprop="headline" content="Best Practice For Producer">
     <meta itemprop="description" content="Some useful tips for users.">
-    <meta itemprop="datePublished" content="September 07, 2017">
+    <meta itemprop="datePublished" content="September 15, 2017">
     <meta itemprop="dateModified" content="December 25, 2016">
 
     <div class="page__inner-wrap">

http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/blob/4a0f5236/content/docs/broadcast-example/index.html
----------------------------------------------------------------------
diff --git a/content/docs/broadcast-example/index.html b/content/docs/broadcast-example/index.html
index e40e11f..71ee5f8 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="2017-09-07T14:22:07+08:00">
+  <meta property="article:published_time" content="2017-09-15T20:34:32+08:00">
 
 
 
@@ -466,7 +466,7 @@
   <article class="page" itemscope itemtype="http://schema.org/CreativeWork">
     <meta itemprop="headline" content="Broadcasting">
     <meta itemprop="description" content="How to send broadcast messages in Apache RocketMQ.">
-    <meta itemprop="datePublished" content="September 07, 2017">
+    <meta itemprop="datePublished" content="September 15, 2017">
     <meta itemprop="dateModified" content="April 25, 2017">
 
     <div class="page__inner-wrap">

http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/blob/4a0f5236/content/docs/cli-admin-tool/index.html
----------------------------------------------------------------------
diff --git a/content/docs/cli-admin-tool/index.html b/content/docs/cli-admin-tool/index.html
index 1552622..5cad2cb 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="2017-09-07T14:22:07+08:00">
+  <meta property="article:published_time" content="2017-09-15T20:34:32+08:00">
 
 
 
@@ -466,7 +466,7 @@
   <article class="page" itemscope itemtype="http://schema.org/CreativeWork">
     <meta itemprop="headline" content="CLI Admin Tool">
     <meta itemprop="description" content="RocketMQ provides a CLI admin tool belt to query, manage and diagnose various issues.">
-    <meta itemprop="datePublished" content="September 07, 2017">
+    <meta itemprop="datePublished" content="September 15, 2017">
     <meta itemprop="dateModified" content="December 17, 2016">
 
     <div class="page__inner-wrap">

http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/blob/4a0f5236/content/docs/cluster-deployment/index.html
----------------------------------------------------------------------
diff --git a/content/docs/cluster-deployment/index.html b/content/docs/cluster-deployment/index.html
index 92f1462..d02e6ea 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="2017-09-07T14:22:07+08:00">
+  <meta property="article:published_time" content="2017-09-15T20:34:32+08:00">
 
 
 
@@ -466,7 +466,7 @@
   <article class="page" itemscope itemtype="http://schema.org/CreativeWork">
     <meta itemprop="headline" content="Cluster Configuration and Deployment">
     <meta itemprop="description" content="Prerequisite">
-    <meta itemprop="datePublished" content="September 07, 2017">
+    <meta itemprop="datePublished" content="September 15, 2017">
     <meta itemprop="dateModified" content="December 17, 2016">
 
     <div class="page__inner-wrap">

http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/blob/4a0f5236/content/docs/code-guidelines/index.html
----------------------------------------------------------------------
diff --git a/content/docs/code-guidelines/index.html b/content/docs/code-guidelines/index.html
index 08d0386..84fa3df 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="2017-09-07T14:22:07+08:00">
+  <meta property="article:published_time" content="2017-09-15T20:34:32+08:00">
 
 
 
@@ -466,7 +466,7 @@
   <article class="page" itemscope itemtype="http://schema.org/CreativeWork">
     <meta itemprop="headline" content="Coding Guidelines">
     <meta itemprop="description" content="Apache RocketMQ Coding Guidelines">
-    <meta itemprop="datePublished" content="September 07, 2017">
+    <meta itemprop="datePublished" content="September 15, 2017">
     <meta itemprop="dateModified" content="December 30, 2016">
 
     <div class="page__inner-wrap">

http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/blob/4a0f5236/content/docs/core-concept/index.html
----------------------------------------------------------------------
diff --git a/content/docs/core-concept/index.html b/content/docs/core-concept/index.html
index 843a441..022a03e 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="2017-09-07T14:22:07+08:00">
+  <meta property="article:published_time" content="2017-09-15T20:34:32+08:00">
 
 
 
@@ -466,7 +466,7 @@
   <article class="page" itemscope itemtype="http://schema.org/CreativeWork">
     <meta itemprop="headline" content="Core Concept">
     <meta itemprop="description" content="">
-    <meta itemprop="datePublished" content="September 07, 2017">
+    <meta itemprop="datePublished" content="September 15, 2017">
     <meta itemprop="dateModified" content="December 17, 2016">
 
     <div class="page__inner-wrap">

http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/blob/4a0f5236/content/docs/create-pull-request/index.html
----------------------------------------------------------------------
diff --git a/content/docs/create-pull-request/index.html b/content/docs/create-pull-request/index.html
index 938e194..0716fbb 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="2017-09-07T14:22:07+08:00">
+  <meta property="article:published_time" content="2017-09-15T20:34:32+08:00">
 
 
 
@@ -466,7 +466,7 @@
   <article class="page" itemscope itemtype="http://schema.org/CreativeWork">
     <meta itemprop="headline" content="How to create Pull Request">
     <meta itemprop="description" content="This page guides you through the pull request creation process.">
-    <meta itemprop="datePublished" content="September 07, 2017">
+    <meta itemprop="datePublished" content="September 15, 2017">
     <meta itemprop="dateModified" content="December 25, 2016">
 
     <div class="page__inner-wrap">

http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/blob/4a0f5236/content/docs/documentation/index.html
----------------------------------------------------------------------
diff --git a/content/docs/documentation/index.html b/content/docs/documentation/index.html
index 808be8a..142779f 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="2017-09-07T14:22:07+08:00">
+  <meta property="article:published_time" content="2017-09-15T20:34:32+08:00">
 
 
 
@@ -466,7 +466,7 @@
   <article class="page" itemscope itemtype="http://schema.org/CreativeWork">
     <meta itemprop="headline" content="Documentation">
     <meta itemprop="description" content="Apache RocketMQ Documentation">
-    <meta itemprop="datePublished" content="September 07, 2017">
+    <meta itemprop="datePublished" content="September 15, 2017">
     <meta itemprop="dateModified" content="March 02, 2017">
 
     <div class="page__inner-wrap">

http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/blob/4a0f5236/content/docs/faq/index.html
----------------------------------------------------------------------
diff --git a/content/docs/faq/index.html b/content/docs/faq/index.html
index 4ddc234..aa633d7 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="2017-09-07T14:22:07+08:00">
+  <meta property="article:published_time" content="2017-09-15T20:34:32+08:00">
 
 
 
@@ -466,7 +466,7 @@
   <article class="page" itemscope itemtype="http://schema.org/CreativeWork">
     <meta itemprop="headline" content="Frequently Asked Questions">
     <meta itemprop="description" content="The following questions are frequently asked with regard to the RocketMQ project in general.General1. Why did we create rocketmq project instead of selecting other products?Please refer to Why RocketMQ">
-    <meta itemprop="datePublished" content="September 07, 2017">
+    <meta itemprop="datePublished" content="September 15, 2017">
     <meta itemprop="dateModified" content="December 28, 2016">
 
     <div class="page__inner-wrap">

http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/blob/4a0f5236/content/docs/filter-by-sql92-example/index.html
----------------------------------------------------------------------
diff --git a/content/docs/filter-by-sql92-example/index.html b/content/docs/filter-by-sql92-example/index.html
index db4f850..fceb251 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="2017-09-07T14:22:07+08:00">
+  <meta property="article:published_time" content="2017-09-15T20:34:32+08:00">
 
 
 
@@ -466,7 +466,7 @@
   <article class="page" itemscope itemtype="http://schema.org/CreativeWork">
     <meta itemprop="headline" content="Filter Example">
     <meta itemprop="description" content="How to filter messages by SQL92 in Apache RocketMQ.">
-    <meta itemprop="datePublished" content="September 07, 2017">
+    <meta itemprop="datePublished" content="September 15, 2017">
     <meta itemprop="dateModified" content="April 27, 2017">
 
     <div class="page__inner-wrap">

http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/blob/4a0f5236/content/docs/how-to-contribute/index.html
----------------------------------------------------------------------
diff --git a/content/docs/how-to-contribute/index.html b/content/docs/how-to-contribute/index.html
index e113eaf..b048f27 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="2017-09-07T14:22:07+08:00">
+  <meta property="article:published_time" content="2017-09-15T20:34:32+08:00">
 
 
 
@@ -466,7 +466,7 @@
   <article class="page" itemscope itemtype="http://schema.org/CreativeWork">
     <meta itemprop="headline" content="How To Contribute">
     <meta itemprop="description" content="Apache RocketMQ is developed by an open and friendly community. Everybody is cordially welcome to join the community and contribute to Apache RocketMQ. There are several ways to interact with the community and to contribute to RocketMQ including asking questions, filing bug reports, proposing new features, joining discussions on the mailing lists, contributing code or documentation, improving the website, or testing release candidates.">
-    <meta itemprop="datePublished" content="September 07, 2017">
+    <meta itemprop="datePublished" content="September 15, 2017">
     <meta itemprop="dateModified" content="August 24, 2017">
 
     <div class="page__inner-wrap">

http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/blob/4a0f5236/content/docs/logappender-example/index.html
----------------------------------------------------------------------
diff --git a/content/docs/logappender-example/index.html b/content/docs/logappender-example/index.html
index e2e771c..092caea 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="2017-09-07T14:22:07+08:00">
+  <meta property="article:published_time" content="2017-09-15T20:34:32+08:00">
 
 
 
@@ -466,7 +466,7 @@
   <article class="page" itemscope itemtype="http://schema.org/CreativeWork">
     <meta itemprop="headline" content="Logappender Example">
     <meta itemprop="description" content="How to use logappender in RocketMQ.">
-    <meta itemprop="datePublished" content="September 07, 2017">
+    <meta itemprop="datePublished" content="September 15, 2017">
     <meta itemprop="dateModified" content="June 09, 2017">
 
     <div class="page__inner-wrap">

http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/blob/4a0f5236/content/docs/motivation/index.html
----------------------------------------------------------------------
diff --git a/content/docs/motivation/index.html b/content/docs/motivation/index.html
index 37fbd2e..b9e9ee0 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="2017-09-07T14:22:07+08:00">
+  <meta property="article:published_time" content="2017-09-15T20:34:32+08:00">
 
 
 
@@ -466,7 +466,7 @@
   <article class="page" itemscope itemtype="http://schema.org/CreativeWork">
     <meta itemprop="headline" content="Motivation">
     <meta itemprop="description" content="At early stages, we constructed our distributed messaging middleware based on ActiveMQ 5.x(prior to 5.3). Our multinational business uses it for asynchronous communication, search, social network activity stream, data pipeline,even in its trade processes. As our trade business throughput rises, pressure originating from our messaging clusteralso becomes urgent.">
-    <meta itemprop="datePublished" content="September 07, 2017">
+    <meta itemprop="datePublished" content="September 15, 2017">
     <meta itemprop="dateModified" content="December 17, 2016">
 
     <div class="page__inner-wrap">

http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/blob/4a0f5236/content/docs/openmessaging-example/index.html
----------------------------------------------------------------------
diff --git a/content/docs/openmessaging-example/index.html b/content/docs/openmessaging-example/index.html
index 25429b0..17cf378 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="2017-09-07T14:22:07+08:00">
+  <meta property="article:published_time" content="2017-09-15T20:34:32+08:00">
 
 
 
@@ -466,7 +466,7 @@
   <article class="page" itemscope itemtype="http://schema.org/CreativeWork">
     <meta itemprop="headline" content="OpenMessaging Example">
     <meta itemprop="description" content="How to use OpenMessaging in RocketMQ.">
-    <meta itemprop="datePublished" content="September 07, 2017">
+    <meta itemprop="datePublished" content="September 15, 2017">
     <meta itemprop="dateModified" content="June 09, 2017">
 
     <div class="page__inner-wrap">

http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/blob/4a0f5236/content/docs/order-example/index.html
----------------------------------------------------------------------
diff --git a/content/docs/order-example/index.html b/content/docs/order-example/index.html
index 4e011bb..0f87220 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="2017-09-07T14:22:07+08:00">
+  <meta property="article:published_time" content="2017-09-15T20:34:32+08:00">
 
 
 
@@ -466,7 +466,7 @@
   <article class="page" itemscope itemtype="http://schema.org/CreativeWork">
     <meta itemprop="headline" content="Order Message">
     <meta itemprop="description" content="How to send and receive ordered messages in Apache RocketMQ.">
-    <meta itemprop="datePublished" content="September 07, 2017">
+    <meta itemprop="datePublished" content="September 15, 2017">
     <meta itemprop="dateModified" content="April 25, 2017">
 
     <div class="page__inner-wrap">

http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/blob/4a0f5236/content/docs/pull-request/index.html
----------------------------------------------------------------------
diff --git a/content/docs/pull-request/index.html b/content/docs/pull-request/index.html
index 12d4ca4..cd1f10c 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="2017-09-07T14:22:07+08:00">
+  <meta property="article:published_time" content="2017-09-15T20:34:32+08:00">
 
 
 
@@ -466,7 +466,7 @@
   <article class="page" itemscope itemtype="http://schema.org/CreativeWork">
     <meta itemprop="headline" content="How to manage Pull Request">
     <meta itemprop="description" content="This page guides you through Git setup and contribution process.">
-    <meta itemprop="datePublished" content="September 07, 2017">
+    <meta itemprop="datePublished" content="September 15, 2017">
     <meta itemprop="dateModified" content="December 25, 2016">
 
     <div class="page__inner-wrap">
@@ -613,7 +613,7 @@ You pull request will be reviewed and commented by committers, and issues can be
 </code></pre>
 </div>
 
-<p>Remember use <code class="highlighter-rouge">- [x]</code> mark a item finished in the check list and there is a <a href="https://github.com/apache/incubator-rocketmq/pull/152">demo pull request</a> can be your reference.</p>
+<p>Remember use <code class="highlighter-rouge">- [x]</code> mark an item finished in the check list and there is a <a href="https://github.com/apache/incubator-rocketmq/pull/152">demo pull request</a> can be your reference.</p>
 
 <h1 id="merging-a-pr-yours-or-contributors">Merging a PR (yours or contributors)</h1>
 <p>Start with reading <a href="https://help.github.com/articles/checking-out-pull-requests-locally/">GitHub PR merging locally</a>. Remember that pull requests are equivalent to a remote github branch with potentially a multitude of commits. In this case it is recommended to squash remote commit history to have one commit per issue, rather than merging in a multitude of contributor’s commits. In order to do that, as well as to close the PR at the same time, it is recommended to use squash commits.

http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/blob/4a0f5236/content/docs/quick-start/index.html
----------------------------------------------------------------------
diff --git a/content/docs/quick-start/index.html b/content/docs/quick-start/index.html
index 166c4cd..1a3e2c1 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="2017-09-07T14:22:07+08:00">
+  <meta property="article:published_time" content="2017-09-15T20:34:32+08:00">
 
 
 
@@ -466,7 +466,7 @@
   <article class="page" itemscope itemtype="http://schema.org/CreativeWork">
     <meta itemprop="headline" content="Quick Start">
     <meta itemprop="description" content="How to quickly install and setup Apache RocketMQ.">
-    <meta itemprop="datePublished" content="September 07, 2017">
+    <meta itemprop="datePublished" content="September 15, 2017">
     <meta itemprop="dateModified" content="December 30, 2016">
 
     <div class="page__inner-wrap">

http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/blob/4a0f5236/content/docs/release-manual.html
----------------------------------------------------------------------
diff --git a/content/docs/release-manual.html b/content/docs/release-manual.html
index 14eaeb1..4b06b41 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="2017-09-07T14:22:07+08:00">
+  <meta property="article:published_time" content="2017-09-15T20:34:32+08:00">
 
 
 
@@ -466,7 +466,7 @@
   <article class="page" itemscope itemtype="http://schema.org/CreativeWork">
     <meta itemprop="headline" content="Release Manual">
     <meta itemprop="description" content="Apache RocketMQ Release Manual">
-    <meta itemprop="datePublished" content="September 07, 2017">
+    <meta itemprop="datePublished" content="September 15, 2017">
     <meta itemprop="dateModified" content="February 08, 2017">
 
     <div class="page__inner-wrap">
@@ -580,7 +580,7 @@
 <p>Cleanup JIRA issues related to this release version, and check all the issues has been marked with right version in the <code class="highlighter-rouge">FixVersion</code> field.</p>
 
 <h3 id="publish-the-release-notes">Publish the Release Notes</h3>
-<p>Generate the release notes via <a href="https://issues.apache.org/jira/browse/ROCKETMQ/">RocketMQ JIRA</a> and publish it to the <a href="https://github.com/apache/incubator-rocketmq-site">rocketmq-site</a>, there is a <a href="http://rocketmq.incubator.apache.org/release_notes/release-notes-4.0.0-incubating/">release notes</a> of <code class="highlighter-rouge">4.0.0-incubating</code> available for reference, include the link to the release notes in the voting emails.</p>
+<p>Generate the release notes via <a href="https://issues.apache.org/jira/browse/ROCKETMQ/">RocketMQ JIRA</a> and publish it to the <a href="https://github.com/apache/incubator-rocketmq-site">rocketmq-site</a>, there is a <a href="http://rocketmq.apache.org/release_notes/release-notes-4.0.0-incubating/">release notes</a> of <code class="highlighter-rouge">4.0.0-incubating</code> available for reference, include the link to the release notes in the voting emails.</p>
 
 <h2 id="build-the-release-candidate">Build the Release Candidate</h2>
 <p>Firstly, checkout a new branch from <code class="highlighter-rouge">master</code> with its name equal to the release version, like <code class="highlighter-rouge">release-4.0.0-incubating</code>.</p>
@@ -816,7 +816,7 @@ The Apache RocketMQ Team</p>
   <p>The Apache RocketMQ team would like to announce the release of Apache RocketMQ &lt;release version&gt; (incubating).</p>
 
   <p>More details regarding Apache RocketMQ can be found at:<br />
-http://rocketmq.incubator.apache.org/</p>
+http://rocketmq.apache.org/</p>
 
   <p>The release artifacts can be downloaded here:<br />
 https://dist.apache.org/repos/dist/release/incubator/rocketmq/${release version}</p>

http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/blob/4a0f5236/content/docs/rmq-arc/index.html
----------------------------------------------------------------------
diff --git a/content/docs/rmq-arc/index.html b/content/docs/rmq-arc/index.html
index fdb0d0c..b576ebb 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="2017-09-07T14:22:07+08:00">
+  <meta property="article:published_time" content="2017-09-15T20:34:32+08:00">
 
 
 
@@ -466,7 +466,7 @@
   <article class="page" itemscope itemtype="http://schema.org/CreativeWork">
     <meta itemprop="headline" content="RocketMQ Architecture">
     <meta itemprop="description" content="The main Architecture of Apache RocketMQ.">
-    <meta itemprop="datePublished" content="September 07, 2017">
+    <meta itemprop="datePublished" content="September 15, 2017">
     <meta itemprop="dateModified" content="April 25, 2017">
 
     <div class="page__inner-wrap">

http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/blob/4a0f5236/content/docs/rmq-deployment/index.html
----------------------------------------------------------------------
diff --git a/content/docs/rmq-deployment/index.html b/content/docs/rmq-deployment/index.html
index 96866e1..653ab26 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="2017-09-07T14:22:07+08:00">
+  <meta property="article:published_time" content="2017-09-15T20:34:32+08:00">
 
 
 
@@ -466,7 +466,7 @@
   <article class="page" itemscope itemtype="http://schema.org/CreativeWork">
     <meta itemprop="headline" content="Deployment">
     <meta itemprop="description" content="How to deploy the Apache RocketMQ.">
-    <meta itemprop="datePublished" content="September 07, 2017">
+    <meta itemprop="datePublished" content="September 15, 2017">
     <meta itemprop="dateModified" content="April 25, 2017">
 
     <div class="page__inner-wrap">

http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/blob/4a0f5236/content/docs/roadmap/index.html
----------------------------------------------------------------------
diff --git a/content/docs/roadmap/index.html b/content/docs/roadmap/index.html
index 4d13d42..b3b04b3 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="2017-09-07T14:22:07+08:00">
+  <meta property="article:published_time" content="2017-09-15T20:34:32+08:00">
 
 
 
@@ -466,7 +466,7 @@
   <article class="page" itemscope itemtype="http://schema.org/CreativeWork">
     <meta itemprop="headline" content="The RoadMap of Apache RocketMQ">
     <meta itemprop="description" content="4.1.0~4.3.0-incubating RoadMap:">
-    <meta itemprop="datePublished" content="September 07, 2017">
+    <meta itemprop="datePublished" content="September 15, 2017">
     <meta itemprop="dateModified" content="March 08, 2017">
 
     <div class="page__inner-wrap">

http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/blob/4a0f5236/content/docs/schedule-example/index.html
----------------------------------------------------------------------
diff --git a/content/docs/schedule-example/index.html b/content/docs/schedule-example/index.html
index 364ee4c..039f775 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="2017-09-07T14:22:07+08:00">
+  <meta property="article:published_time" content="2017-09-15T20:34:32+08:00">
 
 
 
@@ -466,7 +466,7 @@
   <article class="page" itemscope itemtype="http://schema.org/CreativeWork">
     <meta itemprop="headline" content="Schedule example">
     <meta itemprop="description" content="How to use schedule component to reduce pull in RocketMQ.">
-    <meta itemprop="datePublished" content="September 07, 2017">
+    <meta itemprop="datePublished" content="September 15, 2017">
     <meta itemprop="dateModified" content="April 25, 2017">
 
     <div class="page__inner-wrap">

http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/blob/4a0f5236/content/docs/simple-example/index.html
----------------------------------------------------------------------
diff --git a/content/docs/simple-example/index.html b/content/docs/simple-example/index.html
index b607b24..922ced6 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="2017-09-07T14:22:07+08:00">
+  <meta property="article:published_time" content="2017-09-15T20:34:32+08:00">
 
 
 
@@ -466,7 +466,7 @@
   <article class="page" itemscope itemtype="http://schema.org/CreativeWork">
     <meta itemprop="headline" content="Simple Message Example">
     <meta itemprop="description" content="How to send simple message to reduce pull in RocketMQ.">
-    <meta itemprop="datePublished" content="September 07, 2017">
+    <meta itemprop="datePublished" content="September 15, 2017">
     <meta itemprop="dateModified" content="April 25, 2017">
 
     <div class="page__inner-wrap">

http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/blob/4a0f5236/content/docs/system-config/index.html
----------------------------------------------------------------------
diff --git a/content/docs/system-config/index.html b/content/docs/system-config/index.html
index 5558266..88c80cc 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="2017-09-07T14:22:07+08:00">
+  <meta property="article:published_time" content="2017-09-15T20:34:32+08:00">
 
 
 
@@ -466,7 +466,7 @@
   <article class="page" itemscope itemtype="http://schema.org/CreativeWork">
     <meta itemprop="headline" content="RocketMQ JVM/Linux Configuration">
     <meta itemprop="description" content="This is an introduction for configuring RocketMQ broker JVM/OS parameters. It points out certain specified configurations that should be thinking about before deploying RocketMQ cluster.">
-    <meta itemprop="datePublished" content="September 07, 2017">
+    <meta itemprop="datePublished" content="September 15, 2017">
     <meta itemprop="dateModified" content="July 15, 2017">
 
     <div class="page__inner-wrap">

http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/blob/4a0f5236/content/dowloading/releases/index.html
----------------------------------------------------------------------
diff --git a/content/dowloading/releases/index.html b/content/dowloading/releases/index.html
index 8ff467f..235236e 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="2017-09-07T14:22:07+08:00">
+  <meta property="article:published_time" content="2017-09-15T20:34:32+08:00">
 
 
 
@@ -466,7 +466,7 @@
   <article class="page" itemscope itemtype="http://schema.org/CreativeWork">
     <meta itemprop="headline" content="Downloading the Apache RocketMQ Releases">
     <meta itemprop="description" content="Compatibility GuideThe table below shows the supported jre environment for components of each release.">
-    <meta itemprop="datePublished" content="September 07, 2017">
+    <meta itemprop="datePublished" content="September 15, 2017">
     <meta itemprop="dateModified" content="February 21, 2017">
 
     <div class="page__inner-wrap">

http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/blob/4a0f5236/content/feed.xml
----------------------------------------------------------------------
diff --git a/content/feed.xml b/content/feed.xml
index 97cad92..e0f8682 100644
--- a/content/feed.xml
+++ b/content/feed.xml
@@ -1,4 +1,4 @@
-<?xml version="1.0" encoding="utf-8"?><?xml-stylesheet type="text/xml" href="/feed.xslt.xml"?><feed xmlns="http://www.w3.org/2005/Atom"><generator uri="http://jekyllrb.com" version="3.3.1">Jekyll</generator><link href="/feed.xml" rel="self" type="application/atom+xml" /><link href="/" rel="alternate" type="text/html" /><updated>2017-09-07T14:22:07+08:00</updated><id>//</id><title type="html">Apache RocketMQ</title><subtitle>The homepage of RocketMQ.</subtitle><author><name>{&quot;name&quot;=&gt;nil, &quot;avatar&quot;=&gt;&quot;/assets/images/rmq-logo.png&quot;, &quot;bio&quot;=&gt;&quot;An open source distributed messaging and streaming data platform.&quot;, &quot;location&quot;=&gt;&quot;Hangzhou, China&quot;, &quot;email&quot;=&gt;&quot;dev@rocketmq.incubator.apache.org&quot;, &quot;uri&quot;=&gt;&quot;http://incubator.staging.apache.org/projects/rocketmq.html&quot;, &quot;bitbucket&quot;=&gt;nil, &quot;codepen&quot;=&gt;nil, &quot;dribbble&quot;=&gt;nil, &quot;flickr&quot;=&gt;n
 il, &quot;facebook&quot;=&gt;nil, &quot;foursquare&quot;=&gt;nil, &quot;github&quot;=&gt;&quot;apache/incubator-rocketmq&quot;, &quot;google_plus&quot;=&gt;nil, &quot;keybase&quot;=&gt;nil, &quot;instagram&quot;=&gt;nil, &quot;lastfm&quot;=&gt;nil, &quot;linkedin&quot;=&gt;nil, &quot;pinterest&quot;=&gt;nil, &quot;soundcloud&quot;=&gt;nil, &quot;stackoverflow&quot;=&gt;&quot;questions/tagged/rocketmq&quot;, &quot;steam&quot;=&gt;nil, &quot;tumblr&quot;=&gt;nil, &quot;twitter&quot;=&gt;&quot;ApacheRocketMQ&quot;, &quot;vine&quot;=&gt;nil, &quot;weibo&quot;=&gt;nil, &quot;xing&quot;=&gt;nil, &quot;youtube&quot;=&gt;nil, &quot;quora&quot;=&gt;&quot;topic/RocketMQ&quot;}</name><email>dev@rocketmq.incubator.apache.org</email><uri>http://incubator.staging.apache.org/projects/rocketmq.html</uri></author><entry><title type="html">Field Report of Apache RocketMQ Meetup Beijing</title><link href="/rocketmq/Field-Report-Meetup-Beijing/" rel="alternate" type="text/html" title="Field Report of A
 pache RocketMQ Meetup Beijing" /><published>2017-07-02T00:00:00+08:00</published><updated>2017-07-02T00:00:00+08:00</updated><id>/rocketmq/Field-Report-Meetup-Beijing</id><content type="html" xml:base="/rocketmq/Field-Report-Meetup-Beijing/">&lt;p&gt;In July 1st, Apache RocketMQ community launched a meetup in Beijing with a perfect ending. Thanks for everyone’s participation.&lt;/p&gt;
+<?xml version="1.0" encoding="utf-8"?><?xml-stylesheet type="text/xml" href="/feed.xslt.xml"?><feed xmlns="http://www.w3.org/2005/Atom"><generator uri="http://jekyllrb.com" version="3.3.1">Jekyll</generator><link href="/feed.xml" rel="self" type="application/atom+xml" /><link href="/" rel="alternate" type="text/html" /><updated>2017-09-15T20:34:32+08:00</updated><id>//</id><title type="html">Apache RocketMQ</title><subtitle>The homepage of RocketMQ.</subtitle><author><name>{&quot;name&quot;=&gt;nil, &quot;avatar&quot;=&gt;&quot;/assets/images/rmq-logo.png&quot;, &quot;bio&quot;=&gt;&quot;An open source distributed messaging and streaming data platform.&quot;, &quot;location&quot;=&gt;&quot;Hangzhou, China&quot;, &quot;email&quot;=&gt;&quot;dev@rocketmq.incubator.apache.org&quot;, &quot;uri&quot;=&gt;&quot;http://incubator.staging.apache.org/projects/rocketmq.html&quot;, &quot;bitbucket&quot;=&gt;nil, &quot;codepen&quot;=&gt;nil, &quot;dribbble&quot;=&gt;nil, &quot;flickr&quot;=&gt;n
 il, &quot;facebook&quot;=&gt;nil, &quot;foursquare&quot;=&gt;nil, &quot;github&quot;=&gt;&quot;apache/incubator-rocketmq&quot;, &quot;google_plus&quot;=&gt;nil, &quot;keybase&quot;=&gt;nil, &quot;instagram&quot;=&gt;nil, &quot;lastfm&quot;=&gt;nil, &quot;linkedin&quot;=&gt;nil, &quot;pinterest&quot;=&gt;nil, &quot;soundcloud&quot;=&gt;nil, &quot;stackoverflow&quot;=&gt;&quot;questions/tagged/rocketmq&quot;, &quot;steam&quot;=&gt;nil, &quot;tumblr&quot;=&gt;nil, &quot;twitter&quot;=&gt;&quot;ApacheRocketMQ&quot;, &quot;vine&quot;=&gt;nil, &quot;weibo&quot;=&gt;nil, &quot;xing&quot;=&gt;nil, &quot;youtube&quot;=&gt;nil, &quot;quora&quot;=&gt;&quot;topic/RocketMQ&quot;}</name><email>dev@rocketmq.incubator.apache.org</email><uri>http://incubator.staging.apache.org/projects/rocketmq.html</uri></author><entry><title type="html">Field Report of Apache RocketMQ Meetup Beijing</title><link href="/rocketmq/Field-Report-Meetup-Beijing/" rel="alternate" type="text/html" title="Field Report of A
 pache RocketMQ Meetup Beijing" /><published>2017-07-02T00:00:00+08:00</published><updated>2017-07-02T00:00:00+08:00</updated><id>/rocketmq/Field-Report-Meetup-Beijing</id><content type="html" xml:base="/rocketmq/Field-Report-Meetup-Beijing/">&lt;p&gt;In July 1st, Apache RocketMQ community launched a meetup in Beijing with a perfect ending. Thanks for everyone’s participation.&lt;/p&gt;
 
 &lt;p&gt;It is really appreciated that over 300 RocketMQ or open source enthusiasts gathered in Institute of Software, Chinese Academy of Sciences, to attend this meetup in such a hot summer day.
 &lt;img src=&quot;/assets/images/blog/meetup_beijing_group.jpg&quot; alt=&quot;meetup_beijing_group&quot; /&gt;&lt;/p&gt;

http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/blob/4a0f5236/content/index.html
----------------------------------------------------------------------
diff --git a/content/index.html b/content/index.html
index 52c9486..8db7079 100644
--- a/content/index.html
+++ b/content/index.html
@@ -368,9 +368,6 @@
 
 </div>
 
-<h2 id="disclaimer">Disclaimer</h2>
-<p>Apache RocketMQ is an effort undergoing incubation at The Apache Software Foundation (ASF), sponsored by Incubator. Incubation is required of all newly accepted projects until a further review indicates that the infrastructure, communications, and decision making process have stabilized in a manner consistent with other successful ASF projects. While incubation status is not necessarily a reflection of the completeness or stability of the code, it does indicate that the project has yet to be fully endorsed by the ASF.</p>
-
     </section>
   </article>
 </div>


[3/9] incubator-rocketmq-site git commit: Add some user logos

Posted by yu...@apache.org.
Add some user logos


Project: http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/commit/77bf3831
Tree: http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/tree/77bf3831
Diff: http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/diff/77bf3831

Branch: refs/heads/asf-site
Commit: 77bf3831b6fe5530a62aed3efc2aa2e1d709ef88
Parents: 92fc39f
Author: yukon <yu...@apache.org>
Authored: Tue Aug 22 19:23:21 2017 +0800
Committer: yukon <yu...@apache.org>
Committed: Tue Aug 22 20:30:51 2017 +0800

----------------------------------------------------------------------
 _pages/users.md                              |  51 +++++++++++++++++-----
 assets/images/community/gome-logo.png        | Bin 0 -> 18321 bytes
 assets/images/community/huawei-logo.png      | Bin 0 -> 4235 bytes
 assets/images/community/iqiyi-logo.png       | Bin 0 -> 15922 bytes
 assets/images/community/kedaxunfei-logo.png  | Bin 0 -> 8267 bytes
 assets/images/community/mingsheng-logo.gif   | Bin 0 -> 5308 bytes
 assets/images/community/mingsheng-logo.png   | Bin 0 -> 11269 bytes
 assets/images/community/mobike-logo.png      | Bin 0 -> 13080 bytes
 assets/images/community/mogujie-logo.png     | Bin 0 -> 8293 bytes
 assets/images/community/shouqi-logo.png      | Bin 0 -> 5281 bytes
 assets/images/community/shunfeng-logo.png    | Bin 0 -> 13829 bytes
 assets/images/community/wensihaihui-logo.png | Bin 0 -> 10679 bytes
 assets/images/community/yunpan-logo.png      | Bin 14263 -> 13018 bytes
 13 files changed, 39 insertions(+), 12 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/blob/77bf3831/_pages/users.md
----------------------------------------------------------------------
diff --git a/_pages/users.md b/_pages/users.md
index 78406c5..b4f8443 100644
--- a/_pages/users.md
+++ b/_pages/users.md
@@ -13,35 +13,56 @@ feature_row:
   - image_path: /assets/images/community/alibaba-logo.png
     alt: "Alibaba Group"
   - image_path: /assets/images/community/ant-logo.png
-    alt: "China Telecom Group"
-  - image_path: /assets/images/community/webank-logo.png
-    alt: "WeBank Group"
+    alt: "Ant Finance"
+  - image_path: /assets/images/community/huawei-logo.png
+    alt: "HuaWei Group"
 feature_row1:
   - image_path: /assets/images/community/didi-logo.png
     alt: "DiDi Group"
-  - image_path: /assets/images/community/yeahmobi-logo.png
-    alt: "YeahMobi Group"
-  - image_path: /assets/images/community/egov-logo.png
-    alt: "Egov Group"
+  - image_path: /assets/images/community/webank-logo.png
+    alt: "WeBank Group"
+  - image_path: /assets/images/community/iqiyi-logo.png
+    alt: "IQiYi"
 feature_row2:
+  - image_path: /assets/images/community/mingsheng-logo.png
+    alt: "Ming Sheng Bank"
+  - image_path: /assets/images/community/shunfeng-logo.png
+    alt: "ShunFeng Group"
+  - image_path: /assets/images/community/kedaxunfei-logo.png
+    alt: "KeDaXunFei"
+feature_row3:
   - image_path: /assets/images/community/china-telecom-logo.png
     alt: "China Telecom Group"
   - image_path: /assets/images/community/media-logo.jpg
     alt: "Media Group"
-  - image_path: /assets/images/community/decent-logo.png
-    alt: "Decent Group"
-feature_row3:
+  - image_path: /assets/images/community/mogujie-logo.png
+    alt: "Mogujie"
+feature_row4:
+  - image_path: /assets/images/community/gome-logo.png
+    alt: "Gome"
+  - image_path: /assets/images/community/wensihaihui-logo.png
+    alt: "WenSiHaiHui"
+  - image_path: /assets/images/community/mobike-logo.png
+    alt: "MoBike"
+feature_row5:
   - image_path: /assets/images/community/yunpan-logo.png
     alt: "Yunpan Group"
   - image_path: /assets/images/community/shihai-logo.jpg
     alt: "Shihai Group"
   - image_path: /assets/images/community/tree-logo.png
     alt: "Tree Finance Group"
-feature_row4:
+feature_row6:
   - image_path: /assets/images/community/yhsoft-logo.png
     alt: "YH software Group"
   - image_path: /assets/images/community/fenqile-logo.png
     alt: "Fenqile Group"
+  - image_path: /assets/images/community/egov-logo.png
+    alt: "Egov Group"
+feature_row7:
+  - image_path: /assets/images/community/shouqi-logo.png
+    alt: "ShouQiYueChe"
+  - image_path: /assets/images/community/decent-logo.png
+    alt: "Decent Group"
 
 intro:
   - excerpt: "Who uses Apache RocketMQ ? &nbsp;"
@@ -57,4 +78,10 @@ intro:
 
 {% include feature_row id="feature_row3" %}
 
-{% include feature_row id="feature_row4" %}
\ No newline at end of file
+{% include feature_row id="feature_row4" %}
+
+{% include feature_row id="feature_row5" %}
+
+{% include feature_row id="feature_row6" %}
+
+{% include feature_row id="feature_row7" %}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/blob/77bf3831/assets/images/community/gome-logo.png
----------------------------------------------------------------------
diff --git a/assets/images/community/gome-logo.png b/assets/images/community/gome-logo.png
new file mode 100644
index 0000000..f4d9d70
Binary files /dev/null and b/assets/images/community/gome-logo.png differ

http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/blob/77bf3831/assets/images/community/huawei-logo.png
----------------------------------------------------------------------
diff --git a/assets/images/community/huawei-logo.png b/assets/images/community/huawei-logo.png
new file mode 100644
index 0000000..3f3c2dd
Binary files /dev/null and b/assets/images/community/huawei-logo.png differ

http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/blob/77bf3831/assets/images/community/iqiyi-logo.png
----------------------------------------------------------------------
diff --git a/assets/images/community/iqiyi-logo.png b/assets/images/community/iqiyi-logo.png
new file mode 100644
index 0000000..668df20
Binary files /dev/null and b/assets/images/community/iqiyi-logo.png differ

http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/blob/77bf3831/assets/images/community/kedaxunfei-logo.png
----------------------------------------------------------------------
diff --git a/assets/images/community/kedaxunfei-logo.png b/assets/images/community/kedaxunfei-logo.png
new file mode 100644
index 0000000..154ad0d
Binary files /dev/null and b/assets/images/community/kedaxunfei-logo.png differ

http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/blob/77bf3831/assets/images/community/mingsheng-logo.gif
----------------------------------------------------------------------
diff --git a/assets/images/community/mingsheng-logo.gif b/assets/images/community/mingsheng-logo.gif
new file mode 100644
index 0000000..7a4b1ee
Binary files /dev/null and b/assets/images/community/mingsheng-logo.gif differ

http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/blob/77bf3831/assets/images/community/mingsheng-logo.png
----------------------------------------------------------------------
diff --git a/assets/images/community/mingsheng-logo.png b/assets/images/community/mingsheng-logo.png
new file mode 100644
index 0000000..6be5c71
Binary files /dev/null and b/assets/images/community/mingsheng-logo.png differ

http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/blob/77bf3831/assets/images/community/mobike-logo.png
----------------------------------------------------------------------
diff --git a/assets/images/community/mobike-logo.png b/assets/images/community/mobike-logo.png
new file mode 100644
index 0000000..ebb2351
Binary files /dev/null and b/assets/images/community/mobike-logo.png differ

http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/blob/77bf3831/assets/images/community/mogujie-logo.png
----------------------------------------------------------------------
diff --git a/assets/images/community/mogujie-logo.png b/assets/images/community/mogujie-logo.png
new file mode 100644
index 0000000..e164dbc
Binary files /dev/null and b/assets/images/community/mogujie-logo.png differ

http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/blob/77bf3831/assets/images/community/shouqi-logo.png
----------------------------------------------------------------------
diff --git a/assets/images/community/shouqi-logo.png b/assets/images/community/shouqi-logo.png
new file mode 100644
index 0000000..5ac1a7e
Binary files /dev/null and b/assets/images/community/shouqi-logo.png differ

http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/blob/77bf3831/assets/images/community/shunfeng-logo.png
----------------------------------------------------------------------
diff --git a/assets/images/community/shunfeng-logo.png b/assets/images/community/shunfeng-logo.png
new file mode 100644
index 0000000..13a5efa
Binary files /dev/null and b/assets/images/community/shunfeng-logo.png differ

http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/blob/77bf3831/assets/images/community/wensihaihui-logo.png
----------------------------------------------------------------------
diff --git a/assets/images/community/wensihaihui-logo.png b/assets/images/community/wensihaihui-logo.png
new file mode 100644
index 0000000..e982a5a
Binary files /dev/null and b/assets/images/community/wensihaihui-logo.png differ

http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/blob/77bf3831/assets/images/community/yunpan-logo.png
----------------------------------------------------------------------
diff --git a/assets/images/community/yunpan-logo.png b/assets/images/community/yunpan-logo.png
index 2fc895a..730eab1 100644
Binary files a/assets/images/community/yunpan-logo.png and b/assets/images/community/yunpan-logo.png differ


[5/9] incubator-rocketmq-site git commit: Polish the contact page with issue tracking

Posted by yu...@apache.org.
Polish the contact page with issue tracking


Project: http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/commit/9dce04a6
Tree: http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/tree/9dce04a6
Diff: http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/diff/9dce04a6

Branch: refs/heads/asf-site
Commit: 9dce04a64bbd7c2dbd9453ab3dcdc6ea0442e458
Parents: 52516e2
Author: yukon <yu...@apache.org>
Authored: Fri Aug 25 11:46:28 2017 +0800
Committer: yukon <yu...@apache.org>
Committed: Fri Aug 25 11:46:28 2017 +0800

----------------------------------------------------------------------
 _about/02-contact.md | 18 +++++++++++++++++-
 1 file changed, 17 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/blob/9dce04a6/_about/02-contact.md
----------------------------------------------------------------------
diff --git a/_about/02-contact.md b/_about/02-contact.md
index 475c971..c1a2415 100644
--- a/_about/02-contact.md
+++ b/_about/02-contact.md
@@ -17,6 +17,22 @@ These are the mailing lists that have been established for RocketMQ. For each li
 |Development|Development related discussions|[Subscribe](mailto:dev-subscribe@rocketmq.incubator.apache.org)|[Unsubscribe](mailto:dev-unsubscribe@rocketmq.incubator.apache.org)|[mail-archives.apache.org](http://mail-archives.apache.org/mod_mbox/incubator-rocketmq-dev//)|
 |Commits|All commits to repositories|[Subscribe](mailto:commits-subscribe@rocketmq.incubator.apache.org)|[Unsubscribe](mailto:commits-unsubscribe@rocketmq.incubator.apache.org)|[mail-archives.apache.org](http://mail-archives.apache.org/mod_mbox/incubator-rocketmq-commits/)|
 
-Besides, we hold tagged questions on [stackoverflow.com](http://stackoverflow.com/questions/tagged/rocketmq) where you can launch an interactive discussion. Also, you can try to find answers to your question about RocketMQ on Quora [here](https://www.quora.com/topic/RocketMQ).
+## Security Issues Tracking
+
+Apache RocketMQ specifically offers security features and is responsive to issues around its features. If you have any concern around RocketMQ Security or believe you have uncovered a vulnerability, please report it via the e-mail address [private@rocketmq.apache.org](mailto:private@rocketmq.apache.org). In the message, try to provide a description of the issue and ideally a way of reproducing it.
+
+Dealing with fixed issues or general questions on how to use the security features should be handled regularly via the users and the dev lists. 
+
+The ASF Security team maintains a page with a description of how vulnerabilities are handled, check their [web page](http://www.apache.org/security/) for more information.
+
+## Issue Tracking
+
+Apache RocketMQ project uses JIRA for issue tracking.
+
+Issues, bugs, and feature requests should be submitted to the [issue tracking system](https://issues.apache.org/jira/browse/ROCKETMQ) for this project.
+
+## RocketMQ on Stack Overflow
+
+We hold tagged questions on [stackoverflow.com](http://stackoverflow.com/questions/tagged/rocketmq) where you can launch an interactive discussion.