This package has been deprecated

Author message:

this package has been deprecated

od-hystrix-too-busy

0.2.2 • Public • Published

hystrix-too-busy

Greenkeeper badge

Provides a back-pressure management based on hystrix command and too-busy module logic, utilizing hystrix metrics accumulation and circuit breaking capabilities to avoid false positives generated by plain toobusy-js module.

codecov Build Status NPM Downloads Known Vulnerabilities

too-busy in action

What is it?

The importance of maintaining the stability of the system is hard to argue. There are many different techniques on how to achieve this. One of them is based on determining how busy the system based on a latency related to event loop by measuring between expected and actual time when measured timer event happens.

One of the popular modules is toobusy-js, but it does not work as expected and can generate false positives (busy signal) under relatively small load (20% CPU) due to GC memory profile or an application logic. What was missing is a floating window of measurements over specific period of time; which would provide better data to decide if the system is really busy.

Hystrix component provides a fail fast pattern on top of the statistics it collects and that makes it a perfect candidate to add to toobusy-js module to close this gap.

The module defines a hystrix command that executes toobusy check and emits back an error which is used by hystrix to calculate number of errors towards circuit opening.

Once the circuit is open it will stay open till the next sleep window, which will lead to generating a constant signal to the client that the system is busy.

Since it is based on hystrix, it makes all the statistic available to hystrix dashboard and can be integrated into the same node app or plugged into standalone hystrix dashboard.

For more details on this topic, please read these blog posts Part 1 and Part 2.

Install

$ npm install hystrix-too-busy -S

Usage

require('hystrix-too-busy').getState(busy => {
    console.log('I am', busy ? 'busy' : 'free');
})
 
// or for specific command
require('hystrix-too-busy').getState('fooCommand', busy => {
    console.log(`fooCommand is ${busy ? 'busy' : 'free'}`);
})

Configuration

Since this module is based on both too-busy and hystrixjs you need to understand how different parameters affect the outcome, which in our case is a signal that the system is in stress mode and need to shed some load.

  • toobusy settings:

    • latencyThreshold (default 70) is a number if milliseconds that defines a threshold beyond which toobusy module would generate positive signal that the system is busy.
    • interval (default 500) is a number in milliseconds that defines intervals at which to calculate the system state.
    • smoothingFactor (default 0.33) is smoothing factor used by toobusy module to calculate how system is busy.
  • hystrix settings:

    • circuitBreakerErrorThresholdPercentage (default 50) defines an a threshold for toobusy signal
    • circuitBreakerForceClosed (default false) forces to always keep the circuit closed, which is equal to disabling the module functionality.
    • circuitBreakerForceOpened (default false) forces to always keep the circuit open, which is equal to always busy.
    • circuitBreakerRequestVolumeThreshold (default 20) is a number of requests to the module after which it should start checking if the system is busy
    • circuitBreakerSleepWindowInMilliseconds (default 5000) is an interval after which it should attempt to close the circuit or in other words, check again if the system is busy after being marked as busy.
    • requestVolumeRejectionThreshold (default 0 (off)) defines a number of request to the module after which the requests will be immediately rejected, i.e. marked busy disregarding the actual business of the system. Note by default it is off.
    • statisticalWindowNumberOfBuckets (default 10) is number of buckets used to calculate the stats.
    • statisticalWindowLength (default 10000) defines statistical window in milliseconds.
    • percentileWindowNumberOfBuckets (default 6) defines a number of buckets to calculate percentile stats.
    • percentileWindowLength (default 60000) defines percentile window length in milliseconds.

The default configuration used by the module:

require('hystrix-too-busy').init({
    latencyThreshold: 70,
    interval: 500,
    smoothingFactor: 0.33,
    default: {
        circuitBreakerErrorThresholdPercentage: 50,
        circuitBreakerForceClosed: false,
        circuitBreakerForceOpened: false,
        circuitBreakerRequestVolumeThreshold: 20,
        circuitBreakerSleepWindowInMilliseconds: 5000,
        requestVolumeRejectionThreshold: 0,
        statisticalWindowNumberOfBuckets: 10,
        statisticalWindowLength: 10000,
        percentileWindowNumberOfBuckets: 6,
        percentileWindowLength: 60000
    }
});

Customizing behavior for toobusy module.

Since the module is based on hystrix, we can re-use the command concept to provide different behavior of the circuit breaker. This can allow us to give priorities for some commands over the other, i.e. unimportant commands will get short circuited sooner than the more important ones.

By default all calls to the module will be treated as a single command using default config.

You can configure specific command and only what is different from default config. If some command config is not found, it will use default configuration.

require('hystrix-too-busy').init({
    latencyThreshold: 70,
    interval: 500,
    smoothingFactor: 0.33,
    commands: {
        fooCommand: {
            circuitBreakerErrorThresholdPercentage: 80,
            circuitBreakerRequestVolumeThreshold: 1
        },
        barCommand: {
            circuitBreakerErrorThresholdPercentage: 30
        }
    }
});

Package Sidebar

Install

npm i od-hystrix-too-busy

Weekly Downloads

3

Version

0.2.2

License

MIT

Last publish

Collaborators

  • alexlokshin