-
Notifications
You must be signed in to change notification settings - Fork 11.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ISSUE #8137] Support pop consumption for light message queue
- Loading branch information
Showing
6 changed files
with
358 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
61 changes: 61 additions & 0 deletions
61
example/src/main/java/org/apache/rocketmq/example/simple/LMQProducer.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You under the Apache License, Version 2.0 | ||
* (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package org.apache.rocketmq.example.simple; | ||
|
||
import org.apache.rocketmq.client.exception.MQClientException; | ||
import org.apache.rocketmq.client.producer.DefaultMQProducer; | ||
import org.apache.rocketmq.client.producer.SendResult; | ||
import org.apache.rocketmq.common.MixAll; | ||
import org.apache.rocketmq.common.message.Message; | ||
import org.apache.rocketmq.common.message.MessageConst; | ||
import org.apache.rocketmq.remoting.common.RemotingHelper; | ||
|
||
public class LMQProducer { | ||
public static final String PRODUCER_GROUP = "ProducerGroupName"; | ||
|
||
public static final String DEFAULT_NAMESRVADDR = "127.0.0.1:9876"; | ||
|
||
public static final String TOPIC = "TopicLMQParent"; | ||
|
||
public static final String TAG = "TagA"; | ||
|
||
public static final String LMQ_TOPIC_1 = MixAll.LMQ_PREFIX + "123"; | ||
|
||
public static final String LMQ_TOPIC_2 = MixAll.LMQ_PREFIX + "456"; | ||
|
||
public static void main(String[] args) throws MQClientException, InterruptedException { | ||
DefaultMQProducer producer = new DefaultMQProducer(PRODUCER_GROUP); | ||
|
||
// Uncomment the following line while debugging, namesrvAddr should be set to your local address | ||
producer.setNamesrvAddr(DEFAULT_NAMESRVADDR); | ||
|
||
producer.start(); | ||
for (int i = 0; i < 128; i++) { | ||
try { | ||
Message msg = new Message(TOPIC, TAG, ("Hello RocketMQ " + i).getBytes(RemotingHelper.DEFAULT_CHARSET)); | ||
msg.putUserProperty(MessageConst.PROPERTY_INNER_MULTI_DISPATCH /* "INNER_MULTI_DISPATCH" */, | ||
String.join(MixAll.MULTI_DISPATCH_QUEUE_SPLITTER, LMQ_TOPIC_1, LMQ_TOPIC_2) /* "%LMQ%123,%LMQ%456" */); | ||
SendResult sendResult = producer.send(msg); | ||
System.out.printf("%s%n", sendResult); | ||
} catch (Exception e) { | ||
e.printStackTrace(); | ||
} | ||
} | ||
|
||
producer.shutdown(); | ||
} | ||
} |
76 changes: 76 additions & 0 deletions
76
example/src/main/java/org/apache/rocketmq/example/simple/LMQPullConsumer.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You under the Apache License, Version 2.0 | ||
* (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package org.apache.rocketmq.example.simple; | ||
|
||
import java.util.Arrays; | ||
import java.util.HashSet; | ||
import java.util.List; | ||
import org.apache.rocketmq.client.consumer.DefaultMQPullConsumer; | ||
import org.apache.rocketmq.client.consumer.PullCallback; | ||
import org.apache.rocketmq.client.consumer.PullResult; | ||
import org.apache.rocketmq.client.exception.MQClientException; | ||
import org.apache.rocketmq.common.MixAll; | ||
import org.apache.rocketmq.common.message.MessageExt; | ||
import org.apache.rocketmq.common.message.MessageQueue; | ||
import org.apache.rocketmq.remoting.exception.RemotingException; | ||
|
||
@SuppressWarnings("deprecation") | ||
public class LMQPullConsumer { | ||
public static final String BROKER_NAME = "broker-a"; | ||
|
||
public static final String CONSUMER_GROUP = "CID_LMQ_PULL_1"; | ||
|
||
public static final String TOPIC = "TopicLMQParent"; | ||
|
||
public static final String LMQ_TOPIC = MixAll.LMQ_PREFIX + "123"; | ||
|
||
public static final String NAMESRV_ADDR = "127.0.0.1:9876"; | ||
|
||
public static void main(String[] args) throws MQClientException, RemotingException, InterruptedException { | ||
|
||
DefaultMQPullConsumer consumer = new DefaultMQPullConsumer(CONSUMER_GROUP); | ||
consumer.setNamesrvAddr(NAMESRV_ADDR); | ||
consumer.setRegisterTopics(new HashSet<>(Arrays.asList(TOPIC))); | ||
consumer.start(); | ||
|
||
// use parent topic to fill up broker addr table | ||
consumer.getDefaultMQPullConsumerImpl().getRebalanceImpl().getmQClientFactory() | ||
.updateTopicRouteInfoFromNameServer(TOPIC); | ||
|
||
final MessageQueue lmq = new MessageQueue(LMQ_TOPIC, BROKER_NAME, (int) MixAll.LMQ_QUEUE_ID); | ||
long offset = consumer.minOffset(lmq); | ||
|
||
consumer.pullBlockIfNotFound(lmq, "*", offset, 32, new PullCallback() { | ||
@Override | ||
public void onSuccess(PullResult pullResult) { | ||
List<MessageExt> list = pullResult.getMsgFoundList(); | ||
if (list == null || list.isEmpty()) { | ||
return; | ||
} | ||
|
||
for (MessageExt msg : list) { | ||
System.out.printf("%s Pull New Messages: %s %n", Thread.currentThread().getName(), msg); | ||
} | ||
} | ||
|
||
@Override | ||
public void onException(Throwable e) { | ||
|
||
} | ||
}); | ||
} | ||
} |
90 changes: 90 additions & 0 deletions
90
example/src/main/java/org/apache/rocketmq/example/simple/LMQPushConsumer.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You under the Apache License, Version 2.0 | ||
* (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package org.apache.rocketmq.example.simple; | ||
|
||
import com.google.common.collect.Lists; | ||
|
||
import java.util.Arrays; | ||
import java.util.HashMap; | ||
import java.util.HashSet; | ||
import java.util.List; | ||
import org.apache.rocketmq.client.consumer.DefaultMQPushConsumer; | ||
import org.apache.rocketmq.client.consumer.listener.ConsumeConcurrentlyContext; | ||
import org.apache.rocketmq.client.consumer.listener.ConsumeConcurrentlyStatus; | ||
import org.apache.rocketmq.client.consumer.listener.MessageListenerConcurrently; | ||
import org.apache.rocketmq.client.exception.MQClientException; | ||
import org.apache.rocketmq.common.MixAll; | ||
import org.apache.rocketmq.common.consumer.ConsumeFromWhere; | ||
import org.apache.rocketmq.common.message.MessageExt; | ||
import org.apache.rocketmq.common.message.MessageQueue; | ||
import org.apache.rocketmq.remoting.protocol.route.BrokerData; | ||
import org.apache.rocketmq.remoting.protocol.route.TopicRouteData; | ||
|
||
public class LMQPushConsumer { | ||
public static final String CLUSTER_NAME = "DefaultCluster"; | ||
|
||
public static final String BROKER_NAME = "broker-a"; | ||
|
||
public static final String TOPIC = "TopicLMQParent"; | ||
|
||
public static final String LMQ_TOPIC = MixAll.LMQ_PREFIX + "123"; | ||
|
||
public static final String CONSUMER_GROUP = "CID_LMQ_1"; | ||
|
||
public static final String NAMESRV_ADDR = "127.0.0.1:9876"; | ||
|
||
public static final HashMap<Long, String> BROKER_ADDR_MAP = new HashMap<Long, String>() { | ||
{ | ||
put(MixAll.MASTER_ID, "127.0.0.1:10911"); | ||
} | ||
}; | ||
|
||
public static void main(String[] args) throws InterruptedException, MQClientException { | ||
DefaultMQPushConsumer consumer = new DefaultMQPushConsumer(CONSUMER_GROUP); | ||
consumer.setNamesrvAddr(NAMESRV_ADDR); | ||
consumer.subscribe(LMQ_TOPIC, "*"); | ||
consumer.setConsumeFromWhere(ConsumeFromWhere.CONSUME_FROM_FIRST_OFFSET); | ||
consumer.registerMessageListener(new MessageListenerConcurrently() { | ||
|
||
@Override | ||
public ConsumeConcurrentlyStatus consumeMessage(List<MessageExt> msgs, ConsumeConcurrentlyContext context) { | ||
System.out.printf("%s Receive New Messages: %s %n", Thread.currentThread().getName(), msgs); | ||
return ConsumeConcurrentlyStatus.CONSUME_SUCCESS; | ||
} | ||
}); | ||
consumer.start(); | ||
|
||
// use parent topic to fill up broker addr table | ||
consumer.getDefaultMQPushConsumerImpl().getmQClientFactory().updateTopicRouteInfoFromNameServer(TOPIC); | ||
|
||
final TopicRouteData topicRouteData = new TopicRouteData(); | ||
final BrokerData brokerData = new BrokerData(); | ||
brokerData.setCluster(CLUSTER_NAME); | ||
brokerData.setBrokerName(BROKER_NAME); | ||
brokerData.setBrokerAddrs(BROKER_ADDR_MAP); | ||
topicRouteData.setBrokerDatas(Lists.newArrayList(brokerData)); | ||
// compensate LMQ topic route for MQClientInstance#findBrokerAddrByTopic | ||
consumer.getDefaultMQPushConsumerImpl().getmQClientFactory().getTopicRouteTable().put(LMQ_TOPIC, topicRouteData); | ||
// compensate for RebalanceImpl#topicSubscribeInfoTable | ||
consumer.getDefaultMQPushConsumerImpl().updateTopicSubscribeInfo(LMQ_TOPIC, | ||
new HashSet<>(Arrays.asList(new MessageQueue(LMQ_TOPIC, BROKER_NAME, (int) MixAll.LMQ_QUEUE_ID)))); | ||
// re-balance immediately to start pulling messages | ||
consumer.getDefaultMQPushConsumerImpl().getmQClientFactory().doRebalance(); | ||
|
||
System.out.printf("Consumer Started.%n"); | ||
} | ||
} |
103 changes: 103 additions & 0 deletions
103
example/src/main/java/org/apache/rocketmq/example/simple/LMQPushPopConsumer.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,103 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You under the Apache License, Version 2.0 | ||
* (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package org.apache.rocketmq.example.simple; | ||
|
||
import com.google.common.collect.Lists; | ||
import java.util.HashMap; | ||
import java.util.HashSet; | ||
import java.util.List; | ||
import java.util.Set; | ||
import org.apache.rocketmq.client.consumer.DefaultMQPushConsumer; | ||
import org.apache.rocketmq.client.consumer.listener.ConsumeConcurrentlyContext; | ||
import org.apache.rocketmq.client.consumer.listener.ConsumeConcurrentlyStatus; | ||
import org.apache.rocketmq.client.consumer.listener.MessageListenerConcurrently; | ||
import org.apache.rocketmq.common.MixAll; | ||
import org.apache.rocketmq.common.consumer.ConsumeFromWhere; | ||
import org.apache.rocketmq.common.message.MessageExt; | ||
import org.apache.rocketmq.common.message.MessageRequestMode; | ||
import org.apache.rocketmq.remoting.protocol.route.BrokerData; | ||
import org.apache.rocketmq.remoting.protocol.route.TopicRouteData; | ||
import org.apache.rocketmq.tools.admin.DefaultMQAdminExt; | ||
|
||
public class LMQPushPopConsumer { | ||
public static final String CLUSTER_NAME = "DefaultCluster"; | ||
|
||
public static final String BROKER_NAME = "broker-a"; | ||
|
||
public static final String TOPIC = "TopicLMQParent"; | ||
|
||
public static final String LMQ_TOPIC = MixAll.LMQ_PREFIX + "456"; | ||
|
||
public static final String NAMESRV_ADDR = "127.0.0.1:9876"; | ||
|
||
public static final String CONSUMER_GROUP = "CID_LMQ_POP_1"; | ||
|
||
public static final HashMap<Long, String> BROKER_ADDR_MAP = new HashMap<Long, String>() { | ||
{ | ||
put(MixAll.MASTER_ID, "127.0.0.1:10911"); | ||
} | ||
}; | ||
|
||
public static void main(String[] args) throws Exception { | ||
switchPop(); | ||
|
||
DefaultMQPushConsumer consumer = new DefaultMQPushConsumer(CONSUMER_GROUP); | ||
consumer.setNamesrvAddr(NAMESRV_ADDR); | ||
consumer.subscribe(LMQ_TOPIC, "*"); | ||
consumer.setConsumeFromWhere(ConsumeFromWhere.CONSUME_FROM_FIRST_OFFSET); | ||
consumer.registerMessageListener(new MessageListenerConcurrently() { | ||
@Override | ||
public ConsumeConcurrentlyStatus consumeMessage(List<MessageExt> msgs, ConsumeConcurrentlyContext context) { | ||
System.out.printf("%s Receive New Messages: %s %n", Thread.currentThread().getName(), msgs); | ||
return ConsumeConcurrentlyStatus.CONSUME_SUCCESS; | ||
} | ||
}); | ||
// use server side rebalance | ||
consumer.setClientRebalance(false); | ||
consumer.start(); | ||
|
||
// use parent topic to fill up broker addr table | ||
consumer.getDefaultMQPushConsumerImpl().getmQClientFactory().updateTopicRouteInfoFromNameServer(TOPIC); | ||
|
||
final TopicRouteData topicRouteData = new TopicRouteData(); | ||
final BrokerData brokerData = new BrokerData(); | ||
brokerData.setCluster(CLUSTER_NAME); | ||
brokerData.setBrokerName(BROKER_NAME); | ||
brokerData.setBrokerAddrs(BROKER_ADDR_MAP); | ||
topicRouteData.setBrokerDatas(Lists.newArrayList(brokerData)); | ||
// compensate LMQ topic route for MQClientInstance#findBrokerAddrByTopic | ||
consumer.getDefaultMQPushConsumerImpl().getmQClientFactory().getTopicRouteTable().put(LMQ_TOPIC, topicRouteData); | ||
// re-balance immediately to start pulling messages | ||
consumer.getDefaultMQPushConsumerImpl().getmQClientFactory().doRebalance(); | ||
|
||
System.out.printf("Consumer Started.%n"); | ||
} | ||
|
||
private static void switchPop() throws Exception { | ||
DefaultMQAdminExt mqAdminExt = new DefaultMQAdminExt(); | ||
mqAdminExt.setNamesrvAddr(NAMESRV_ADDR); | ||
mqAdminExt.start(); | ||
List<BrokerData> brokerDatas = mqAdminExt.examineTopicRouteInfo(TOPIC).getBrokerDatas(); | ||
for (BrokerData brokerData : brokerDatas) { | ||
Set<String> brokerAddrs = new HashSet<>(brokerData.getBrokerAddrs().values()); | ||
for (String brokerAddr : brokerAddrs) { | ||
mqAdminExt.setMessageRequestMode(brokerAddr, LMQ_TOPIC, CONSUMER_GROUP, MessageRequestMode.POP, 8, | ||
3_000); | ||
} | ||
} | ||
} | ||
} |