Repository: incubator-rocketmq-site
Updated Branches:
  refs/heads/asf-site 4a5e13240 -> 3bc0ac21e


Add roadmap to rocketmq-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/26cd8d5a
Tree: 
http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/tree/26cd8d5a
Diff: 
http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/diff/26cd8d5a

Branch: refs/heads/asf-site
Commit: 26cd8d5a143806281b23eaabf076d31dc5b13fdd
Parents: da6b8ac
Author: yukon <[email protected]>
Authored: Tue Mar 7 12:15:33 2017 +0800
Committer: yukon <[email protected]>
Committed: Tue Mar 7 14:00:25 2017 +0800

----------------------------------------------------------------------
 _data/navigation.yml          |  2 +
 _docs/11-rocketmq-road-map.md | 85 ++++++++++++++++++++++++++++++++++++++
 2 files changed, 87 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/blob/26cd8d5a/_data/navigation.yml
----------------------------------------------------------------------
diff --git a/_data/navigation.yml b/_data/navigation.yml
index 67344a2..919165d 100644
--- a/_data/navigation.yml
+++ b/_data/navigation.yml
@@ -53,6 +53,8 @@ docs:
         url: "/dowloading/releases/"
       - title: "4.0.0-incubating"
         url: /release_notes/release-notes-4.0.0-incubating/
+  - title: RoadMap
+    url: /docs/roadmap/
   - title: FAQ
     url: /docs/faq/
 

http://git-wip-us.apache.org/repos/asf/incubator-rocketmq-site/blob/26cd8d5a/_docs/11-rocketmq-road-map.md
----------------------------------------------------------------------
diff --git a/_docs/11-rocketmq-road-map.md b/_docs/11-rocketmq-road-map.md
new file mode 100644
index 0000000..0a483bf
--- /dev/null
+++ b/_docs/11-rocketmq-road-map.md
@@ -0,0 +1,85 @@
+---
+title: "The RoadMap of Apache RocketMQ"
+permalink: /docs/roadmap/
+modified: 2017-3-7T15:01:43-04:00
+---
+
+## 4.1.0~4.3.0-incubating RoadMap: 
+
+
+### OpenMessaging 
+OpenMessaging is a redefinition of the application of the access message 
service programming API standard. It is only API, non wire-level protocol. 
OpenMessaging covers large data message processing, stream computing message 
processing, the traditional transaction model of message processing. 
[JIRA](https://issues.apache.org/jira/browse/ROCKETMQ-17) 
+
+
+{% include toc %} 
+
+
+### Message Filtering 
+So far, RocketMQ only support message filtering feature by `TAG`, but one 
message only can own one tag, this is too limited to meet complex business 
requirements. 
+
+
+So, we want to define and implement a reasonable filter language based on a 
subset of the SQL 92 expression syntax to support customized message filtering. 
[JIRA](https://issues.apache.org/jira/browse/ROCKETMQ-121) 
+
+
+### Batch Messaging 
+
+In order to use RocketMQ in big data related scenarios, batch messaging is 
necessary, which will bring million-level TPS for RocketMQ. 
[JIRA](https://issues.apache.org/jira/browse/ROCKETMQ-80), 
[PR](https://github.com/apache/incubator-rocketmq/pull/53) 
+
+### Consistent Hash Allocate Strategy(CHAS) 
+
+Consumer clients use the average allocate strategy by far, which is very 
sensitive when clients register or unregister continually. 
+
+A Consistent Hash allocate strategy is valuable for the developer who cares 
more about stabilization than averaging. 
+
+So it's better for us to support CHAS as a extra choice in consumer load 
balancing. [JIRA](https://issues.apache.org/jira/browse/ROCKETMQ-67), 
[PR](https://github.com/apache/incubator-rocketmq/pull/67) 
+
+### Global Order Messaging 
+
+As we know, messages in the same queue can be consumed sequentially. So we 
always send the congeneric messages to the same queue to guarantee ordering, 
which will cause hot-point issue. 
+
+So It's cool if we support a new global order messaging mechanism, without 
hot-points problem. [JIRA](https://issues.apache.org/jira/browse/ROCKETMQ-122) 
+
+### Distributed Transaction Messaging 
+Undoubtedly, transaction messaging is very frequently-used in most business.  
+
+But it is unfortunate that users must implement transaction mechanism by 
themselves until now, may be they need DataBase to implement it. 
+ 
+It's time to support distributed transaction messaging to make it convenient 
for the user, help them handle complex business with skill and ease. 
[JIRA](https://issues.apache.org/jira/browse/ROCKETMQ-123) 
+
+### Non-Redundant Message Delivery Mechanism 
+
+The duplicated messages are worrisome. It will cost much if user need 
non-repeating messages. 
+
+In most cases, user need store the consume records to judge a message is 
replicated or not, and the store stage should guarantee strong consistency. As 
you see, it's very complicated, so support a strict and non-redundant message 
delivery mechanism is impending. 
[JIRA](https://issues.apache.org/jira/browse/ROCKETMQ-124) 
+
+### Intellective HA Architecture 
+
+RocketMQ uses master-slave as HA architecture, which has low latency and high 
throughput features, but this program need human intervention to recover from 
abnormal situations. 
+  
+So, we want to support a multi-replication high availability/reliability 
mechanism, without human intervention. 
[JIRA](https://issues.apache.org/jira/browse/ROCKETMQ-125) 
+
+### Docker Image 
+Provide a docker image for easy deployment and management, optimize for the 
latest version. [JIRA](https://issues.apache.org/jira/browse/ROCKETMQ-126) 
+
+### MQTT 
+MQTT is a machine-to-machine (M2M)/"Internet of Things" connectivity protocol, 
which has been widely used in IoT. Support MQTT, give RocketMQ the power to 
connect everything. [JIRA](https://issues.apache.org/jira/browse/ROCKETMQ-127) 
+
+## 4.4.0-incubating+ RoadMap: 
+
+1. Support more application layer protocol: WebSocket, HTTP2, etc. 
+2. Support more native language SDK: PHP, Python, .Net, Node, Go, etc. The 
chosen programming languages are the result of surveying many cloud platforms. 
+3. Support advanced message queuing protocol(AMQP). 
+
+## RocketMQ Externals 
+
+RocketMQ, as a message-oriented middleware, plays a connector role in 
distributed environment, so in order to embrace the ecological preferably, 
RocketMQ community needs a series of external projects to integrate with other 
excellent projects. 
+
+1. rocketmq-console, provide a ops dashboard for RocketMQ. 
[REPO](https://github.com/rocketmq/rocketmq-console-ng) 
+2. rocketmq-jms, provide a new client to support JMS 2.0. 
[REPO](https://github.com/rocketmq/rocketmq-jms) 
+3. rocketmq-flume-ng, integrate RocketMQ with Apache 
Flume.[REPO](https://github.com/rocketmq/rocketmq-flume-ng), 
[FLUME-JIRA](https://issues.apache.org/jira/browse/FLUME-3058) 
+4. rocketmq-storm, integrate RocketMQ with storm. 
[REPO](https://github.com/rocketmq/rocketmq-storm) 
+5. rocketmq-ignite, integrate RocketMQ with ignite. 
[JIRA](https://issues.apache.org/jira/browse/ROCKETMQ-41), 
[IGNITE-JIRA](https://issues.apache.org/jira/browse/IGNITE-4539) 
+6. rocketmq-spark, integrate RocketMQ with spark. 
[JIRA](https://issues.apache.org/jira/browse/ROCKETMQ-81) 
+7. rocketmq-flink, integrate RocketMQ with flink. 
[JIRA](https://issues.apache.org/jira/browse/ROCKETMQ-82) 
+8. rocketmq-distributedlog integrate RocketMQ with distributedlog. 
[JIRA](https://issues.apache.org/jira/browse/ROCKETMQ-21) 
+9. rocketmq-spring, provide a adapter for spring and spring-boot. 
[JIRA](https://issues.apache.org/jira/browse/ROCKETMQ-120) 

Reply via email to