RabbitMQ预取被忽略

时间:2013-08-16 01:37:43

标签: java rabbitmq messaging amqp

我遇到了将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声明 - 包括在从我们的频道池返回频道之前立即 - 无济于事。任何想法为什么预取大小不会被尊重?

谢谢!

1 个答案:

答案 0 :(得分:3)

From official doc

  

如果设置了no-ack选项,则忽略prefetch-count。

看起来您正在为您的消费者使用auto-ack标志。确保检查autoAck变量的值。