Giter Club home page Giter Club logo

nestjs-amqp's People

Contributors

c18s avatar wadjakorn avatar wjk-t-dls avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

Forkers

i14t wadjakorn

nestjs-amqp's Issues

Unable to create the amqp session due to operation timeout after queue idled for several days

The below error is thrown from createSender() in AMQPService when sending message after the queue being idled for several days,

[ExceptionsHandler] Unable to create the amqp session due to operation timeout. - {"stack":["OperationTimeoutError: Unable to create the amqp session due to operation timeout.\n at Timeout.actionAfterTimeout (/app/node_modules/rhea-promise/lib/connection.ts:639:23)\n at listOnTimeout (node:internal/timers:557:17)\n at processTimers (node:internal/timers:500:7)"]}

My code:

const senderOptions: any = {
      name: '${destination}:default:connection',
      autosettle: true,
      desired_capabilities: capabilities,
      target: destination,
};
const sender = await this.amqp.createSender({
      senderOptions: senderOptions,
});

if (!sender.session.isOpen()) {
    if (!sender.session.connection.isOpen()) {
        await sender.session.connection.open();
    }
    sender.session.begin();
} 

const delivery = await sender.send({
      durable: true,
      message_id: uuid(),
      body: message,
});

await sender.close();

How to handle clustered AMQ?

Hello,

I am wondering how to handle failover, I need to handle multiple connection ,URLs and if one is unavailable need to connect to another one.

Thanks in advance.

Default consumer

Hello,

Is it possible to subscribe to all messages from the queue? Now, I need to send

    const result = await this.producer.send<SimpleMessage>('demo3', message);

and subscribe to

@Consumer('demo3')

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.