Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

disyuntor

Package Overview
Dependencies
Maintainers
1
Versions
36
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

disyuntor

A circuit-breaker implementation with exponential backoff.

  • 1.3.0
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

A circuit-breaker implementation for node.js with exponential backoff.

Disyuntor is the Spanish word used for circuit-breaker.

The purpose of this pattern is to detect errors and prevent cascading failures across multiple systems.

Disyuntor wraps an async (errback) function and returns a new function with the same signature.

During normal behavior of the system the circuit remains in its closed state. This means that every call to the wrapper is forwarded to the protected function.

Once the protected function returns more than maxFailures, the breaker trips and every call made during the cooldown interval will immdiately return an error preventing resource depletion. This is known as the open state.

Once the system has settled it will allow one call to go to the protected function. If the call succeds the breaker will be reset to its closed state otherwise it will continue open. This state is known as half open

A call is considered to have failed if the callback is not called before the timeout or if it is called with the first (error) parameter.

Installation

npm i disyuntor

Usage

const disyuntor = require('disyuntor');

const dnsSafeLookup = disyuntor(dns.lookup, {
  //Timeout for the protected function.
  timeout: '2s',

  //The number of consecutive failures before switching to open mode
  //and stop calling the underlying service.
  maxFailures: 5,

  //The minimum time the circuit remains open before doing another attempt.
  cooldown: '15s',

  //The maximum amount of time the circuit remains open before doing a new attempt.
  maxCooldown: '60s',

  //This is used in error messages.
  name: 'dns.lookup',

  //optionally log errors
  monitor: (details) => logger.panic({ err: details.err, args: details.args }, 'Error on dns.lookup')
});

//then use as you will normally use dns.lookup
dnsSafeLookup('google.com', (err, ip) => {
  if (err) { return console.error(err.message); }
  console.log(ip);
})

Timeouts can be expressed either by strings like '15s' or by milliseconds.

Defaults values are:

  • timeout: 2s
  • maxFailures: 5
  • cooldown: 15s
  • maxCooldown: 3 * cooldown

Protecting Promise APIs

const lookup = Promise.promisify(require('dns').lookup);

const protectedLookup = disyuntor.promise(lookup, {
  name: 'dns.lookup',
  timeout: '2s',
  maxFailures: 2
});

protectedLookup('google.com')
  .then((ip)  => console.log(ip),
        (err) => console.error(err));

License

Copyright (c) 2015 Auth0, Inc. support@auth0.com (http://auth0.com)

FAQs

Package last updated on 23 Mar 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc