我遇到了将basic.qos
设置为1
并没有达到预期效果的问题 - 仍有大量消息被推送给我的消费者。
我的代码看起来像这样:
Channel channel = getChannel("pollQueuePassive"); // from our own channel pool implementation
try{
channel.queueDeclarePassive(queue.name);
} catch (IOException e){
channel = getChannel("pollQueueActive");
channel.queueDeclare(queue.name, true, false, false, null);
}
channel.basicQos(1);
QueueingConsumer consumer = new QueueingConsumer(channel);
channel.basicConsume(queue.name, autoAck, consumer);
while (!stopPolling()) {
try{
QueueingConsumer.Delivery delivery = consumer.nextDelivery();
String message = new String(delivery.getBody());
boolean workResult = doWork(message);
if(!autoAck) {
if(workResult)
channel.basicAck(delivery.getEnvelope().getDeliveryTag(), true);
else
channel.basicNack(delivery.getEnvelope().getDeliveryTag(), false, true);
}
} catch (InterruptedException e) {}
}
closeConnection();
一旦我开始以这种方式从队列中消费,队列中的所有消息(在某些情况下超过20,000)几乎立即传递给消费者。由于我想将队列中的消息同时分发给数十个消费者,因此这种行为显然是不可取的。我已经玩过移动我的basic.qos
声明 - 包括在从我们的频道池返回频道之前立即 - 无济于事。任何想法为什么预取大小不会被尊重?
谢谢!
答案 0 :(得分:3)