Java Code Examples for org.apache.rocketmq.common.protocol.heartbeat.SubscriptionData#setSubString()
The following examples show how to use
org.apache.rocketmq.common.protocol.heartbeat.SubscriptionData#setSubString() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: DefaultMQPushConsumerImpl.java From rocketmq with Apache License 2.0 | 6 votes |
public void subscribe(String topic, String fullClassName, String filterClassSource) throws MQClientException { try { SubscriptionData subscriptionData = FilterAPI.buildSubscriptionData(this.defaultMQPushConsumer.getConsumerGroup(), topic, "*"); subscriptionData.setSubString(fullClassName); subscriptionData.setClassFilterMode(true); subscriptionData.setFilterClassSource(filterClassSource); this.rebalanceImpl.getSubscriptionInner().put(topic, subscriptionData); if (this.mQClientFactory != null) { this.mQClientFactory.sendHeartbeatToAllBrokerWithLock(); } } catch (Exception e) { throw new MQClientException("subscription exception", e); } }
Example 2
Source File: DefaultMQPushConsumerImpl.java From rocketmq with Apache License 2.0 | 6 votes |
public void subscribe(String topic, String fullClassName, String filterClassSource) throws MQClientException { try { SubscriptionData subscriptionData = FilterAPI.buildSubscriptionData(this.defaultMQPushConsumer.getConsumerGroup(), // topic, "*"); subscriptionData.setSubString(fullClassName); subscriptionData.setClassFilterMode(true); subscriptionData.setFilterClassSource(filterClassSource); this.rebalanceImpl.getSubscriptionInner().put(topic, subscriptionData); if (this.mQClientFactory != null) { this.mQClientFactory.sendHeartbeatToAllBrokerWithLock(); } } catch (Exception e) { throw new MQClientException("subscription exception", e); } }
Example 3
Source File: FilterAPI.java From rocketmq-read with Apache License 2.0 | 6 votes |
public static SubscriptionData build(final String topic, final String subString, final String type) throws Exception { if (ExpressionType.TAG.equals(type) || type == null) { return buildSubscriptionData(null, topic, subString); } if (subString == null || subString.length() < 1) { throw new IllegalArgumentException("Expression can't be null! " + type); } SubscriptionData subscriptionData = new SubscriptionData(); subscriptionData.setTopic(topic); subscriptionData.setSubString(subString); subscriptionData.setExpressionType(type); return subscriptionData; }
Example 4
Source File: DefaultMQPushConsumerImpl.java From rocketmq_trans_message with Apache License 2.0 | 6 votes |
public void subscribe(String topic, String fullClassName, String filterClassSource) throws MQClientException { try { SubscriptionData subscriptionData = FilterAPI.buildSubscriptionData(this.defaultMQPushConsumer.getConsumerGroup(), // topic, "*"); subscriptionData.setSubString(fullClassName); subscriptionData.setClassFilterMode(true); subscriptionData.setFilterClassSource(filterClassSource); this.rebalanceImpl.getSubscriptionInner().put(topic, subscriptionData); if (this.mQClientFactory != null) { this.mQClientFactory.sendHeartbeatToAllBrokerWithLock(); } } catch (Exception e) { throw new MQClientException("subscription exception", e); } }
Example 5
Source File: DefaultMQPushConsumerImpl.java From rocketmq-read with Apache License 2.0 | 6 votes |
/** * 关注 topic。上传源代码 * @param topic ; * @param fullClassName ; * @param filterClassSource ; * @throws MQClientException ; */ public void subscribe(String topic, String fullClassName, String filterClassSource) throws MQClientException { try { SubscriptionData subscriptionData = FilterAPI.buildSubscriptionData(this.defaultMQPushConsumer.getConsumerGroup(), topic, "*"); subscriptionData.setSubString(fullClassName); subscriptionData.setClassFilterMode(true); subscriptionData.setFilterClassSource(filterClassSource); this.rebalanceImpl.getSubscriptionInner().put(topic, subscriptionData); if (this.mQClientFactory != null) { this.mQClientFactory.sendHeartbeatToAllBrokerWithLock(); } } catch (Exception e) { throw new MQClientException("subscription exception", e); } }
Example 6
Source File: DefaultMQPushConsumerImpl.java From DDMQ with Apache License 2.0 | 6 votes |
public void subscribe(String topic, String fullClassName, String filterClassSource) throws MQClientException { try { SubscriptionData subscriptionData = FilterAPI.buildSubscriptionData(this.defaultMQPushConsumer.getConsumerGroup(), topic, "*"); subscriptionData.setSubString(fullClassName); subscriptionData.setClassFilterMode(true); subscriptionData.setFilterClassSource(filterClassSource); this.rebalanceImpl.getSubscriptionInner().put(topic, subscriptionData); if (this.mQClientFactory != null) { this.mQClientFactory.sendHeartbeatToAllBrokerWithLock(); } } catch (Exception e) { throw new MQClientException("subscription exception", e); } }
Example 7
Source File: FilterAPI.java From rocketmq-4.3.0 with Apache License 2.0 | 6 votes |
public static SubscriptionData build(final String topic, final String subString, final String type) throws Exception { if (ExpressionType.TAG.equals(type) || type == null) { // =》 return buildSubscriptionData(null, topic, subString); } if (subString == null || subString.length() < 1) { throw new IllegalArgumentException("Expression can't be null! " + type); } SubscriptionData subscriptionData = new SubscriptionData(); subscriptionData.setTopic(topic); subscriptionData.setSubString(subString); subscriptionData.setExpressionType(type); return subscriptionData; }
Example 8
Source File: FilterAPI.java From DDMQ with Apache License 2.0 | 6 votes |
public static SubscriptionData build(final String topic, final String subString, final String type) throws Exception { if (ExpressionType.TAG.equals(type) || type == null) { return buildSubscriptionData(null, topic, subString); } if (subString == null || subString.length() < 1) { throw new IllegalArgumentException("Expression can't be null! " + type); } SubscriptionData subscriptionData = new SubscriptionData(); subscriptionData.setTopic(topic); subscriptionData.setSubString(subString); subscriptionData.setExpressionType(type); return subscriptionData; }
Example 9
Source File: FilterAPI.java From DDMQ with Apache License 2.0 | 6 votes |
public static SubscriptionData build(final String topic, final String subString, final String type) throws Exception { if (ExpressionType.TAG.equals(type) || type == null) { return buildSubscriptionData(null, topic, subString); } if (subString == null || subString.length() < 1) { throw new IllegalArgumentException("Expression can't be null! " + type); } SubscriptionData subscriptionData = new SubscriptionData(); subscriptionData.setTopic(topic); subscriptionData.setSubString(subString); subscriptionData.setExpressionType(type); return subscriptionData; }
Example 10
Source File: PullMessageProcessorTest.java From rocketmq-all-4.1.0-incubating with Apache License 2.0 | 5 votes |
static ConsumerData createConsumerData(String group, String topic) { ConsumerData consumerData = new ConsumerData(); consumerData.setConsumeFromWhere(ConsumeFromWhere.CONSUME_FROM_FIRST_OFFSET); consumerData.setConsumeType(ConsumeType.CONSUME_PASSIVELY); consumerData.setGroupName(group); consumerData.setMessageModel(MessageModel.CLUSTERING); Set<SubscriptionData> subscriptionDataSet = new HashSet<>(); SubscriptionData subscriptionData = new SubscriptionData(); subscriptionData.setTopic(topic); subscriptionData.setSubString("*"); subscriptionData.setSubVersion(100L); subscriptionDataSet.add(subscriptionData); consumerData.setSubscriptionDataSet(subscriptionDataSet); return consumerData; }
Example 11
Source File: DeFiPullMessageProcessorTest.java From DeFiBus with Apache License 2.0 | 5 votes |
static ConsumerData createConsumerData(String group, String topic) { ConsumerData consumerData = new ConsumerData(); consumerData.setConsumeFromWhere(ConsumeFromWhere.CONSUME_FROM_FIRST_OFFSET); consumerData.setConsumeType(ConsumeType.CONSUME_PASSIVELY); consumerData.setGroupName(group); consumerData.setMessageModel(MessageModel.CLUSTERING); Set<SubscriptionData> subscriptionDataSet = new HashSet<>(); SubscriptionData subscriptionData = new SubscriptionData(); subscriptionData.setTopic(topic); subscriptionData.setSubString("*"); subscriptionData.setSubVersion(100L); subscriptionDataSet.add(subscriptionData); consumerData.setSubscriptionDataSet(subscriptionDataSet); return consumerData; }
Example 12
Source File: PullMessageProcessorTest.java From rocketmq with Apache License 2.0 | 5 votes |
static ConsumerData createConsumerData(String group, String topic) { ConsumerData consumerData = new ConsumerData(); consumerData.setConsumeFromWhere(ConsumeFromWhere.CONSUME_FROM_FIRST_OFFSET); consumerData.setConsumeType(ConsumeType.CONSUME_PASSIVELY); consumerData.setGroupName(group); consumerData.setMessageModel(MessageModel.CLUSTERING); Set<SubscriptionData> subscriptionDataSet = new HashSet<>(); SubscriptionData subscriptionData = new SubscriptionData(); subscriptionData.setTopic(topic); subscriptionData.setSubString("*"); subscriptionData.setSubVersion(100L); subscriptionDataSet.add(subscriptionData); consumerData.setSubscriptionDataSet(subscriptionDataSet); return consumerData; }
Example 13
Source File: DeFiConsumerManagerTest.java From DeFiBus with Apache License 2.0 | 5 votes |
private ConsumerData createConsumerData(String group, String topic) { ConsumerData consumerData = new ConsumerData(); consumerData.setConsumeFromWhere(ConsumeFromWhere.CONSUME_FROM_FIRST_OFFSET); consumerData.setConsumeType(ConsumeType.CONSUME_PASSIVELY); consumerData.setGroupName(group); consumerData.setMessageModel(MessageModel.CLUSTERING); Set<SubscriptionData> subscriptionDataSet = new HashSet<>(); SubscriptionData subscriptionData = new SubscriptionData(); subscriptionData.setTopic(topic); subscriptionData.setSubString("*"); subscriptionData.setSubVersion(100L); subscriptionDataSet.add(subscriptionData); consumerData.setSubscriptionDataSet(subscriptionDataSet); return consumerData; }
Example 14
Source File: FilterAPI.java From rocketmq with Apache License 2.0 | 5 votes |
public static SubscriptionData buildSubscriptionData(final String consumerGroup, String topic, String subString) throws Exception { SubscriptionData subscriptionData = new SubscriptionData(); subscriptionData.setTopic(topic); subscriptionData.setSubString(subString); if (null == subString || subString.equals(SubscriptionData.SUB_ALL) || subString.length() == 0) { subscriptionData.setSubString(SubscriptionData.SUB_ALL); } else { String[] tags = subString.split("\\|\\|"); if (tags.length > 0) { for (String tag : tags) { if (tag.length() > 0) { String trimString = tag.trim(); if (trimString.length() > 0) { subscriptionData.getTagsSet().add(trimString); subscriptionData.getCodeSet().add(trimString.hashCode()); } } } } else { throw new Exception("subString split error"); } } return subscriptionData; }
Example 15
Source File: PullMessageProcessorTest.java From DDMQ with Apache License 2.0 | 5 votes |
static ConsumerData createConsumerData(String group, String topic) { ConsumerData consumerData = new ConsumerData(); consumerData.setConsumeFromWhere(ConsumeFromWhere.CONSUME_FROM_FIRST_OFFSET); consumerData.setConsumeType(ConsumeType.CONSUME_PASSIVELY); consumerData.setGroupName(group); consumerData.setMessageModel(MessageModel.CLUSTERING); Set<SubscriptionData> subscriptionDataSet = new HashSet<>(); SubscriptionData subscriptionData = new SubscriptionData(); subscriptionData.setTopic(topic); subscriptionData.setSubString("*"); subscriptionData.setSubVersion(100L); subscriptionDataSet.add(subscriptionData); consumerData.setSubscriptionDataSet(subscriptionDataSet); return consumerData; }
Example 16
Source File: FilterAPI.java From rocketmq-read with Apache License 2.0 | 5 votes |
/** * 构造SubscriptionData集合 * @param consumerGroup 消费组 * @param topic topic * @param subString tag表达式 * @return ; * @throws Exception ; */ public static SubscriptionData buildSubscriptionData(final String consumerGroup, String topic, String subString) throws Exception { SubscriptionData subscriptionData = new SubscriptionData(); subscriptionData.setTopic(topic); subscriptionData.setSubString(subString); if (null == subString || subString.equals(SubscriptionData.SUB_ALL) || subString.length() == 0) { subscriptionData.setSubString(SubscriptionData.SUB_ALL); } else { String[] tags = subString.split("\\|\\|"); if (tags.length > 0) { for (String tag : tags) { if (tag.length() > 0) { String trimString = tag.trim(); if (trimString.length() > 0) { subscriptionData.getTagsSet().add(trimString); subscriptionData.getCodeSet().add(trimString.hashCode()); } } } } else { throw new Exception("subString split error"); } } return subscriptionData; }
Example 17
Source File: FilterAPI.java From rocketmq with Apache License 2.0 | 5 votes |
/** * 根据 Topic 和 订阅表达式 创建订阅数据 * * @param consumerGroup 消费分组 * @param topic Topic * @param subString 订阅表达式 * @return 订阅数据 * @throws Exception 当解析订阅表达式时 */ public static SubscriptionData buildSubscriptionData(final String consumerGroup, String topic, String subString) throws Exception { SubscriptionData subscriptionData = new SubscriptionData(); subscriptionData.setTopic(topic); subscriptionData.setSubString(subString); // 处理订阅表达式 if (null == subString || subString.equals(SubscriptionData.SUB_ALL) || subString.length() == 0) { subscriptionData.setSubString(SubscriptionData.SUB_ALL); } else { String[] tags = subString.split("\\|\\|"); if (tags.length > 0) { for (String tag : tags) { if (tag.length() > 0) { String trimString = tag.trim(); if (trimString.length() > 0) { subscriptionData.getTagsSet().add(trimString); subscriptionData.getCodeSet().add(trimString.hashCode()); } } } } else { throw new Exception("subString split error"); } } return subscriptionData; }
Example 18
Source File: MessageStoreWithFilterTest.java From rocketmq-4.3.0 with Apache License 2.0 | 4 votes |
@Test public void testGetMessage_withFilterBitMap() throws Exception { List<MessageExtBrokerInner> msgs = putMsg(master, topicCount, msgPerTopic); Thread.sleep(100); for (int i = 0; i < topicCount; i++) { String realTopic = topic + i; for (int j = 0; j < msgPerTopic; j++) { String group = "CID_" + j; ConsumerFilterData filterData = filterManager.get(realTopic, group); assertThat(filterData).isNotNull(); List<MessageExtBrokerInner> filteredMsgs = filtered(msgs, filterData); SubscriptionData subscriptionData = new SubscriptionData(); subscriptionData.setExpressionType(filterData.getExpressionType()); subscriptionData.setTopic(filterData.getTopic()); subscriptionData.setClassFilterMode(false); subscriptionData.setSubString(filterData.getExpression()); GetMessageResult getMessageResult = master.getMessage(group, realTopic, queueId, 0, 10000, new ExpressionMessageFilter(subscriptionData, filterData, filterManager)); String assertMsg = group + "-" + realTopic; try { assertThat(getMessageResult).isNotNull(); assertThat(GetMessageStatus.FOUND).isEqualTo(getMessageResult.getStatus()); assertThat(getMessageResult.getMessageBufferList()).isNotNull().isNotEmpty(); assertThat(getMessageResult.getMessageBufferList().size()).isEqualTo(filteredMsgs.size()); for (ByteBuffer buffer : getMessageResult.getMessageBufferList()) { MessageExt messageExt = MessageDecoder.decode(buffer.slice(), false); assertThat(messageExt).isNotNull(); Object evlRet = null; try { evlRet = filterData.getCompiledExpression().evaluate(new MessageEvaluationContext(messageExt.getProperties())); } catch (Exception e) { e.printStackTrace(); assertThat(true).isFalse(); } assertThat(evlRet).isNotNull().isEqualTo(Boolean.TRUE); // check boolean find = false; for (MessageExtBrokerInner messageExtBrokerInner : filteredMsgs) { if (messageExtBrokerInner.getMsgId().equals(messageExt.getMsgId())) { find = true; } } assertThat(find).isTrue(); } } finally { getMessageResult.release(); } } } }
Example 19
Source File: MessageStoreWithFilterTest.java From DDMQ with Apache License 2.0 | 4 votes |
@Test public void testGetMessage_withFilterBitMap() throws Exception { List<MessageExtBrokerInner> msgs = putMsg(master, topicCount, msgPerTopic); Thread.sleep(100); for (int i = 0; i < topicCount; i++) { String realTopic = topic + i; for (int j = 0; j < msgPerTopic; j++) { String group = "CID_" + j; ConsumerFilterData filterData = filterManager.get(realTopic, group); assertThat(filterData).isNotNull(); List<MessageExtBrokerInner> filteredMsgs = filtered(msgs, filterData); SubscriptionData subscriptionData = new SubscriptionData(); subscriptionData.setExpressionType(filterData.getExpressionType()); subscriptionData.setTopic(filterData.getTopic()); subscriptionData.setClassFilterMode(false); subscriptionData.setSubString(filterData.getExpression()); GetMessageResult getMessageResult = master.getMessage(group, realTopic, queueId, 0, 10000, new ExpressionMessageFilter(subscriptionData, filterData, filterManager)); String assertMsg = group + "-" + realTopic; try { assertThat(getMessageResult).isNotNull(); assertThat(GetMessageStatus.FOUND).isEqualTo(getMessageResult.getStatus()); assertThat(getMessageResult.getMessageBufferList()).isNotNull().isNotEmpty(); assertThat(getMessageResult.getMessageBufferList().size()).isEqualTo(filteredMsgs.size()); for (ByteBuffer buffer : getMessageResult.getMessageBufferList()) { MessageExt messageExt = MessageDecoder.decode(buffer.slice(), false); assertThat(messageExt).isNotNull(); Object evlRet = null; try { evlRet = filterData.getCompiledExpression().evaluate(new MessageEvaluationContext(messageExt.getProperties())); } catch (Exception e) { e.printStackTrace(); assertThat(true).isFalse(); } assertThat(evlRet).isNotNull().isEqualTo(Boolean.TRUE); // check boolean find = false; for (MessageExtBrokerInner messageExtBrokerInner : filteredMsgs) { if (messageExtBrokerInner.getMsgId().equals(messageExt.getMsgId())) { find = true; } } assertThat(find).isTrue(); } } finally { getMessageResult.release(); } } } }
Example 20
Source File: MessageStoreWithFilterTest.java From DDMQ with Apache License 2.0 | 4 votes |
@Test public void testGetMessage_withFilterBitMap() throws Exception { List<MessageExtBrokerInner> msgs = putMsg(master, topicCount, msgPerTopic); Thread.sleep(100); for (int i = 0; i < topicCount; i++) { String realTopic = topic + i; for (int j = 0; j < msgPerTopic; j++) { String group = "CID_" + j; ConsumerFilterData filterData = filterManager.get(realTopic, group); assertThat(filterData).isNotNull(); List<MessageExtBrokerInner> filteredMsgs = filtered(msgs, filterData); SubscriptionData subscriptionData = new SubscriptionData(); subscriptionData.setExpressionType(filterData.getExpressionType()); subscriptionData.setTopic(filterData.getTopic()); subscriptionData.setClassFilterMode(false); subscriptionData.setSubString(filterData.getExpression()); GetMessageResult getMessageResult = master.getMessage(group, realTopic, queueId, 0, 10000, new ExpressionMessageFilter(subscriptionData, filterData, filterManager)); String assertMsg = group + "-" + realTopic; try { assertThat(getMessageResult).isNotNull(); assertThat(GetMessageStatus.FOUND).isEqualTo(getMessageResult.getStatus()); assertThat(getMessageResult.getMessageBufferList()).isNotNull().isNotEmpty(); assertThat(getMessageResult.getMessageBufferList().size()).isEqualTo(filteredMsgs.size()); for (ByteBuffer buffer : getMessageResult.getMessageBufferList()) { MessageExt messageExt = MessageDecoder.decode(buffer.slice(), false); assertThat(messageExt).isNotNull(); Object evlRet = null; try { evlRet = filterData.getCompiledExpression().evaluate(new MessageEvaluationContext(messageExt.getProperties())); } catch (Exception e) { e.printStackTrace(); assertThat(true).isFalse(); } assertThat(evlRet).isNotNull().isEqualTo(Boolean.TRUE); // check boolean find = false; for (MessageExtBrokerInner messageExtBrokerInner : filteredMsgs) { if (messageExtBrokerInner.getMsgId().equals(messageExt.getMsgId())) { find = true; } } assertThat(find).isTrue(); } } finally { getMessageResult.release(); } } } }