最初我有以下流程,让消费者使用来自所有三个队列的消息,并检查队列#1,#2和#3中是否有任何项目。然后我意识到这是错误的,因为:
以下是我目前的配置,它显示了我的白痴。
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:rabbit="http://www.springframework.org/schema/rabbit"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
http://www.springframework.org/schema/rabbit http://www.springframework.org/schema/rabbit/spring-rabbit-1.0.xsd">
<rabbit:connection-factory id="connectionFactory" host="localhost" />
<rabbit:template id="amqpTemplatead_daily" connection-factory="connectionFactory"
exchange="" routing-key="daily_queue"/>
<rabbit:template id="amqpTemplatead_weekly" connection-factory="connectionFactory"
exchange="" routing-key="weekly_queue"/>
<rabbit:template id="amqpTemplatead_monthly" connection-factory="connectionFactory"
exchange="" routing-key="monthly_queue"/>
<rabbit:admin connection-factory="connectionFactory" />
<rabbit:listener-container connection-factory="connectionFactory">
<rabbit:listener ref="Consumer" method="consume" queue-names="daily_queue" />
</rabbit:listener-container>
<rabbit:listener-container connection-factory="connectionFactory">
<rabbit:listener ref="Consumer" method="consume" queue-names="weekly_queue" />
</rabbit:listener-container>
<rabbit:listener-container connection-factory="connectionFactory">
<rabbit:listener ref="Consumer" method="consume" queue-names="monthly_queue" />
</rabbit:listener-container>
<bean id="Consumer" class="com.test.Consumer" />
</beans>
知道如何用优先级队列解决这个问题?
ps:我也想知道,如果Apache Camel有我可以依赖的东西吗?
更新1:我刚从Apache Camel看到这个:&#34; https://issues.apache.org/jira/browse/CAMEL-2537&#34; JMSPriority上的音序器似乎是我正在寻找的,任何人都曾尝试过这个吗?
更新2:假设我在@Gary Russell建议下使用RabbitMQ的插件,我有以下spring-rabbitmq上下文XML配置,这似乎有意义(由guest ..):
<rabbit:queue name="ad_google_dfa_reporting_queue">
<rabbit:queue-arguments>
<entry key="x-max-priority" value="10"/>
</rabbit:queue-arguments>
</rabbit:queue>
<rabbit:listener-container connection-factory="connectionFactory">
<rabbit:listener ref="adGoogleDfaReporting" method="consume" queue-names="ad_google_dfa_reporting_queue" />
</rabbit:listener-container>
<bean id="Consumer" class="com.test.Consumer" />
上述xml配置已成功创建一个名称为:&#34; ad_google_dfa_reporting_queue&#34;以及参数参数的队列:x-max-priority:10&amp;持久:真实
但是当发送带有优先级的消息的代码时,我完全失去了它。如何在示例网址中定义优先级:https://github.com/rabbitmq/rabbitmq-priority-queue/blob/master/examples/java/src/com/rabbitmq/examples/PriorityQueue.java
AmqpTemplate amqpTemplateGoogleDfaReporting = (AmqpTemplate) applicationContext.getBean("amqpTemplateadGoogleDfaReporting");
amqpTemplateGoogleDfaReporting.convertAndSend("message"); // how to define message priority?
更新3:根据@Gary的答案,我设法发送邮件中设置了优先级的邮件,如下图所示: 但是,当我发送1000条随机优先级在1-10之间的消息时,消费者正在消费具有各种优先级的消息。 (我原本只期望首先使用高优先级消息)。以下是Message producer的代码:
Random random = new Random();
for (int i=0; i< 1000; i++){
final int priority = random.nextInt(10 - 1 + 1) + 1;
DfaReportingModel model = new DfaReportingModel();
model.setReportType(DfaReportingModel.ReportType.FACT);
model.setUserProfileId(0l + priority);
amqpTemplateGoogleDfaReporting.convertAndSend(model, new MessagePostProcessor() {
@Override
public Message postProcessMessage(Message message) throws AmqpException {
message.getMessageProperties().setPriority(priority);
return message;
}
});
}
以下是Message consumer的代码:
public void consume(DfaReportingModel message) {
System.out.println(message.getUserProfileId());
Thread.sleep(500);
}
我得到的结果:
9, 10, 7, 9, 6, 4, 10, 10, 3, 10, 6, 1, 5, 6, 6, 3, 4, 7, 6, 8, 3, 1, 4, 5, 5, 3, 10, 9, 5, 1, 8, 9, 6, 9, 3, 10, 7, 4, 8, 7, 3, 4, 8, 2, 6, 9, 6, 4, 7, 7, 2, 8, 4, 4, 1,
更新4:问题解决了!知道来自https://github.com/rabbitmq/rabbitmq-priority-queue的示例代码在我的环境中工作,我认为问题出在Spring环境中。因此,经过无数次尝试和错误与不同类型的配置,我指出确切的组合,这将使其工作!并按照以下方式:
<rabbit:queue name="ad_google_dfa_reporting_queue">
<rabbit:queue-arguments>
<entry key="x-max-priority">
<value type="java.lang.Integer">10</value> <!-- MUST specifically define java.lang.Integer to get it to work -->
</entry>
</rabbit:queue-arguments>
</rabbit:queue>
如果没有专门定义值为Integer类型,则优先级队列不起作用。最后,它解决了。耶!
答案 0 :(得分:3)
RabbitMQ现在有一个priority queue plugin,其中消息按优先级顺序传递。最好使用它而不是重新排列低优先级消息的方案,这在运行时会非常昂贵。
修改强>
使用rabbitTemplate.convertAndSend(...)
方法时,如果要在消息上设置优先级属性,则需要在模板中实现自定义MessagePropertiesConverter
(子类DefaultMessagePropertiesConverter
)或使用后处理消息的convertAnSend
变体; e.g:
template.convertAndSend("exchange", "routingKey", "message", new MessagePostProcessor() {
@Override
public Message postProcessMessage(Message message) throws AmqpException {
message.getMessageProperties().setPriority(5);
return message;
}
});
答案 1 :(得分:0)
从版本3.5.0开始,RabbitMQ在核心中实现了priority queue。
您可以使用x-max-priority
参数声明优先级队列。此参数应为整数,指示队列应支持的最大优先级。例如,使用Java客户端:
Channel ch = ...;
Map<String, Object> args = new HashMap<String, Object>();
args.put("x-max-priority", 10);
ch.queueDeclare("my-priority-queue", true, false, false, args);
然后,您可以使用basic.properties
的优先级字段发布优先级消息。数字越大表示优先级越高。