Giter Site home page Giter Site logo

Connection retry? about nestjs HOT 6 CLOSED

golevelup avatar golevelup commented on May 22, 2024
Connection retry?

from nestjs.

Comments (6)

WonderPanda avatar WonderPanda commented on May 22, 2024 4

Thanks for the example code, I'll try to incorporate improved retry and connection logic into the library in the coming week

from nestjs.

murbanowicz avatar murbanowicz commented on May 22, 2024 2

Hi,

I've done it in fairly simple way:

async connectToAmqp(retry = 1): Promise<amqplib.Connection> {
    if (retry > this.config.maxRetries) {
      this.logger.error('Maximum AMQP connection retries reached!');
      throw new Error('Maximum AMQP connection retries reached!');
    }
    this.logger.debug(`Connecting to AMQP. ${retry} try.`);
    try {
      const connection = await amqplib.connect(this.config.uri);
      connection.on('close', async () => {
        this.readiness = false;
        this.logger.warn('AMQP disconnected. Will try to reconnect...');
        this.connection = await this.connectToAmqp();
      });
      this.readiness = true;
      return connection;
    } catch (e) {
      this.logger.debug(`Could not connect to AMQP.`, e);
      await waitFor(this.config.reconnectDelay * retry);
      return this.connectToAmqp(retry + 1);
    }
  }

from nestjs.

WonderPanda avatar WonderPanda commented on May 22, 2024

Hey @murbanowicz I think it makes sense for this to be natively supported by the module. How do you currently implement retry/reconnection behavior in your RabbitMQ connected applications? Maybe if you share a snippet I can use that as a starting point

from nestjs.

azuker avatar azuker commented on May 22, 2024

I recommend you consider incorporating amqp-connection-manager - https://www.npmjs.com/package/amqp-connection-manager

from nestjs.

azuker avatar azuker commented on May 22, 2024

I created a PR for that if you're interested - #80

from nestjs.

WonderPanda avatar WonderPanda commented on May 22, 2024

Connection management is now possible thanks to amqp-connection-manager and the awesome contributions from @azuker

from nestjs.

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.