Socket
Socket
Sign inDemoInstall

graceful-cluster

Package Overview
Dependencies
0
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    graceful-cluster

Gracefully restart node.js http cluster with zero downtime. Shutdown server without active inbound connections reset.


Version published
Weekly downloads
11K
decreased by-15.37%
Maintainers
1
Install size
16.1 kB
Created
Weekly downloads
 

Readme

Source

Graceful cluster

Install:

npm install graceful-cluster

How to use

1. Enable graceful server shutdown

This patch will prevent active connections reset when server receives SIGKILL or SIGTERM. Idle (keep-alive) inbound connections without active requests will be destroyed.

Example 'server.js':

// Example server with 'express'.
var express = require('express');
var app = express();
var listener = app.listen(8000);

var GracefulServer = require('graceful-cluster').GracefulServer;
var gracefulServer = new GracefulServer({
    server: listener,
    shutdownTimeout: 10 * 1000,             // 10 sec.
});

GracefulServer options description:

optioninfo
logfunction, custom log function, console.log used by default.
serverrequired, http server instance.
shutdownTimeoutms, force worker shutdown on SIGTERM timeout. Defaults to 5000ms.

Also you can initiate graceful shutdown when needed:

gracefulServer.shutdown();

2. Use simplified cluster initialization

This cluster wrapper will send SIGTERM signal to workers and wait till they finished all requests.

Also it can gracefully restart all workers one by one with zero cluster downtime on some conditions:

  1. Worker memory used.
  2. Worker time online.
  3. Your custom condition: just call GracefulCluster.gracefullyRestartCurrentWorker() to restart current worker in serverFunction.
  4. On SIGUSR2 signal to cluster process.

Example 'cluster.js':

var GracefulCluster = require('graceful-cluster').GracefulCluster;

process.title = '<your-cluster-title>';     // Note, process title must be near filename (cluster.js) length, longer title truncated.

GracefulCluster.start({
    shutdownTimeout: 10 * 1000,             // 10 sec.
    restartOnTimeout: 5 * 3600 * 1000,      // 5 hours.
    restartOnMemory: 150 * 1024 * 1024,     // 150 MB.
    serverFunction: function() {
        require('./server');                // Your 'server.js' code module with server logic.
    }
});

GracefulCluster options description:

optioninfo
disableGracefuldisable graceful shutdown for faster debug.
exitFunctionoptional, function that is called when the master needs to exit. The default function exits with exit code 0.
logfunction, custom log function, console.log used by default.
restartOnMemorybytes, optional. restart worker on memory usage.
restartOnTimeoutms, optional. restart worker by timer.
serverFunctionrequired, function with worker logic.
shutdownTimeoutms, optional. force worker shutdown on SIGTERM timeout. Defaults to 5000ms.
workersCountworkers count, if not specified os.cpus().length will be used.

Gracefully restart cluster

Graceful restart performed by USR2 signal:

pkill -USR2 <your-cluster-title>

or

kill -s SIGUSR2 <cluster-pid>

This method is also good if your app is launched with forever:

forever start cluster.js

Using with PM2

If you prefer PM2 you should use 'server.js' patch only. This will force PM2 to wait until active connections are closed when using:

pm2 reload <id>

With PM2 graceful reload don`t forget to set important process parameters:

  • "instances": 0 - use cluster with multiple instances, so one instance will still work when another is reloaded.
  • "kill_timeout": 5000 - wait more time to allow active connections finish their responses.

Keywords

FAQs

Last updated on 14 Jul 2017

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc