Giter Site home page Giter Site logo

Comments (2)

soryy708 avatar soryy708 commented on June 12, 2024

If we comment out the per-consume prefetch like so:

import * as amqp from "amqplib";

(async () => {
  const connection = await amqp.connect({
    protocol: "amqp",
    hostname: "localhost",
    port: 5672,
    username: "balanceAdmin",
    password: "Aa123456",
  });
  const channel = await connection.createChannel();
  channel.prefetch(42, true);
  const { queue } = await channel.assertQueue("", { autoDelete: true });
  // channel.prefetch(100, false);
  channel.consume(queue, () => null, { noAck: true });
})();

then global prefetch is set to 42 as expected:

image

but per-consume prefetch is 0.

from amqplib.

cressie176 avatar cressie176 commented on June 12, 2024

Hi @soryy708

I've run your code through WireShark and see the following

  channel.prefetch(42, true);
Advanced Message Queueing Protocol
    Type: Method (1)
    Channel: 1
    Length: 11
    Class: Basic (60)
    Method: Qos (10)
    Arguments
        Prefetch-Size: 0
        Prefetch-Count: 42
        .... ...1 = Global: True
channel.prefetch(100, false);
Advanced Message Queueing Protocol
    Type: Method (1)
    Channel: 1
    Length: 11
    Class: Basic (60)
    Method: Qos (10)
    Arguments
        Prefetch-Size: 0
        Prefetch-Count: 100
        .... ...0 = Global: False

So it looks like amqplib is sending the correct commands and arguments to the broker.

My best guess for what you're seeing in the management UI is that the channel's "prefetch count" and "global prefetch count" are the values that will be applied to subsequent consumer(s) created using this channel. Even if true, this is still misleading though since the RabbitMQ documentation states when both per-channel (global = true) and per-consumer (global = false) are set, both values are honoured.

The AMQP 0-9-1 specification does not explain what happens if you invoke basic.qos multiple times with different global values. RabbitMQ interprets this as meaning that the two prefetch limits should be enforced independently of each other; consumers will only receive new messages when neither limit on unacknowledged messages has been reached.

I think this one is for the RabbitMQ team / community.

from amqplib.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.