我遇到了一个问题,设置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
声明 - 包括在从我们的频道池中返回频道之前 - 无济于事。任何想法为什么不尊重预取大小?
谢谢!