2012-02-27 20:07:49 +01:00
|
|
|
|
# Cluster
|
|
|
|
|
|
|
|
|
|
Stability: 1 - Experimental
|
2011-10-12 23:19:32 +02:00
|
|
|
|
|
|
|
|
|
A single instance of Node runs in a single thread. To take advantage of
|
|
|
|
|
multi-core systems the user will sometimes want to launch a cluster of Node
|
|
|
|
|
processes to handle the load.
|
|
|
|
|
|
2011-11-07 20:37:05 +01:00
|
|
|
|
The cluster module allows you to easily create a network of processes that
|
|
|
|
|
all share server ports.
|
2011-10-12 23:19:32 +02:00
|
|
|
|
|
2011-10-27 01:21:08 +02:00
|
|
|
|
var cluster = require('cluster');
|
|
|
|
|
var http = require('http');
|
2011-11-04 23:11:19 +01:00
|
|
|
|
var numCPUs = require('os').cpus().length;
|
2011-10-27 01:21:08 +02:00
|
|
|
|
|
|
|
|
|
if (cluster.isMaster) {
|
2011-11-04 23:11:19 +01:00
|
|
|
|
// Fork workers.
|
|
|
|
|
for (var i = 0; i < numCPUs; i++) {
|
|
|
|
|
cluster.fork();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
cluster.on('death', function(worker) {
|
|
|
|
|
console.log('worker ' + worker.pid + ' died');
|
|
|
|
|
});
|
2011-10-27 01:21:08 +02:00
|
|
|
|
} else {
|
2011-12-20 10:42:48 +01:00
|
|
|
|
// Workers can share any TCP connection
|
|
|
|
|
// In this case its a HTTP server
|
|
|
|
|
http.createServer(function(req, res) {
|
2011-10-27 01:21:08 +02:00
|
|
|
|
res.writeHead(200);
|
|
|
|
|
res.end("hello world\n");
|
|
|
|
|
}).listen(8000);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Running node will now share port 8000 between the workers:
|
|
|
|
|
|
|
|
|
|
% node server.js
|
2011-10-12 23:19:32 +02:00
|
|
|
|
Worker 2438 online
|
|
|
|
|
Worker 2437 online
|
|
|
|
|
|
2011-12-20 10:42:48 +01:00
|
|
|
|
|
2012-02-27 20:07:49 +01:00
|
|
|
|
This feature was introduced recently, and may change in future versions.
|
|
|
|
|
Please try it out and provide feedback.
|
|
|
|
|
|
|
|
|
|
## cluster.settings
|
|
|
|
|
|
|
|
|
|
* {Object}
|
|
|
|
|
* `exec` {String} file path to worker file. (Default=`__filename`)
|
|
|
|
|
* `args` {Array} string arguments passed to worker.
|
|
|
|
|
(Default=`process.argv.slice(2)`)
|
|
|
|
|
* `silent` {Boolean} whether or not to send output to parent's stdio.
|
|
|
|
|
(Default=`false`)
|
|
|
|
|
|
|
|
|
|
All settings set by the `.setupMaster` is stored in this settings object.
|
|
|
|
|
This object is not supposed to be change or set manually, by you.
|
|
|
|
|
|
|
|
|
|
## cluster.isMaster
|
|
|
|
|
|
|
|
|
|
* {Boolean}
|
2011-12-20 10:42:48 +01:00
|
|
|
|
|
2012-02-27 20:07:49 +01:00
|
|
|
|
True if the process is a master. This is determined
|
2011-12-20 10:42:48 +01:00
|
|
|
|
by the `process.env.NODE_UNIQUE_ID`. If `process.env.NODE_UNIQUE_ID` is
|
2012-02-27 20:07:49 +01:00
|
|
|
|
undefined, then `isMaster` is `true`.
|
2011-12-20 10:42:48 +01:00
|
|
|
|
|
2012-02-27 20:07:49 +01:00
|
|
|
|
## cluster.isWorker
|
|
|
|
|
|
|
|
|
|
* {Boolean}
|
2011-12-20 10:42:48 +01:00
|
|
|
|
|
|
|
|
|
This boolean flag is true if the process is a worker forked from a master.
|
2012-02-27 20:07:49 +01:00
|
|
|
|
If the `process.env.NODE_UNIQUE_ID` is set to a value, then
|
2011-12-20 10:42:48 +01:00
|
|
|
|
`isWorker` is `true`.
|
|
|
|
|
|
2012-02-27 20:07:49 +01:00
|
|
|
|
## Event: 'fork'
|
|
|
|
|
|
|
|
|
|
* `worker` {Worker object}
|
2011-12-20 10:42:48 +01:00
|
|
|
|
|
|
|
|
|
When a new worker is forked the cluster module will emit a 'fork' event.
|
|
|
|
|
This can be used to log worker activity, and create you own timeout.
|
|
|
|
|
|
|
|
|
|
var timeouts = [];
|
|
|
|
|
var errorMsg = function () {
|
|
|
|
|
console.error("Something must be wrong with the connection ...");
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
cluster.on('fork', function (worker) {
|
|
|
|
|
timeouts[worker.uniqueID] = setTimeout(errorMsg, 2000);
|
|
|
|
|
});
|
|
|
|
|
cluster.on('listening', function (worker) {
|
|
|
|
|
clearTimeout(timeouts[worker.uniqueID]);
|
|
|
|
|
});
|
|
|
|
|
cluster.on('death', function (worker) {
|
|
|
|
|
clearTimeout(timeouts[worker.uniqueID]);
|
|
|
|
|
errorMsg();
|
|
|
|
|
});
|
|
|
|
|
|
2012-02-27 20:07:49 +01:00
|
|
|
|
## Event: 'online'
|
|
|
|
|
|
|
|
|
|
* `worker` {Worker object}
|
2011-12-20 10:42:48 +01:00
|
|
|
|
|
|
|
|
|
After forking a new worker, the worker should respond with a online message.
|
|
|
|
|
When the master receives a online message it will emit such event.
|
|
|
|
|
The difference between 'fork' and 'online' is that fork is emitted when the
|
2012-02-27 20:07:49 +01:00
|
|
|
|
master tries to fork a worker, and 'online' is emitted when the worker is
|
|
|
|
|
being executed.
|
2011-12-20 10:42:48 +01:00
|
|
|
|
|
|
|
|
|
cluster.on('online', function (worker) {
|
|
|
|
|
console.log("Yay, the worker responded after it was forked");
|
|
|
|
|
});
|
|
|
|
|
|
2012-02-27 20:07:49 +01:00
|
|
|
|
## Event: 'listening'
|
|
|
|
|
|
|
|
|
|
* `worker` {Worker object}
|
2011-12-20 10:42:48 +01:00
|
|
|
|
|
|
|
|
|
When calling `listen()` from a worker, a 'listening' event is automatically assigned
|
|
|
|
|
to the server instance. When the server is listening a message is send to the master
|
|
|
|
|
where the 'listening' event is emitted.
|
|
|
|
|
|
|
|
|
|
cluster.on('listening', function (worker) {
|
|
|
|
|
console.log("We are now connected");
|
|
|
|
|
});
|
|
|
|
|
|
2012-03-10 16:30:06 +01:00
|
|
|
|
## Event: 'disconnect'
|
|
|
|
|
|
|
|
|
|
* `worker` {Worker object}
|
|
|
|
|
|
|
|
|
|
When a workers IPC channel has disconnected this event is emitted. This will happen
|
|
|
|
|
when the worker die, usually after calling `.destroy()`.
|
|
|
|
|
|
|
|
|
|
But also when calling `.disconnect()`, in this case it is possible there is delay
|
|
|
|
|
between the `disconnect` and `death` and the event can be used to detect if the
|
|
|
|
|
process is stuck in a cleanup or if there are long living connection.
|
|
|
|
|
|
|
|
|
|
cluster.on('disconnect', function(worker) {
|
|
|
|
|
console.log('The worker #' + worker.uniqueID + ' has disconnected');
|
|
|
|
|
});
|
|
|
|
|
|
2012-02-27 20:07:49 +01:00
|
|
|
|
## Event: 'death'
|
|
|
|
|
|
|
|
|
|
* `worker` {Worker object}
|
2011-12-20 10:42:48 +01:00
|
|
|
|
|
|
|
|
|
When any of the workers die the cluster module will emit the 'death' event.
|
|
|
|
|
This can be used to restart the worker by calling `fork()` again.
|
|
|
|
|
|
|
|
|
|
cluster.on('death', function(worker) {
|
|
|
|
|
console.log('worker ' + worker.pid + ' died. restart...');
|
|
|
|
|
cluster.fork();
|
|
|
|
|
});
|
|
|
|
|
|
2012-02-27 20:07:49 +01:00
|
|
|
|
## Event: 'setup'
|
|
|
|
|
|
|
|
|
|
* `worker` {Worker object}
|
2012-01-05 20:09:43 +01:00
|
|
|
|
|
2012-02-27 20:07:49 +01:00
|
|
|
|
When the `.setupMaster()` function has been executed this event emits.
|
|
|
|
|
If `.setupMaster()` was not executed before `fork()` this function will
|
|
|
|
|
call `.setupMaster()` with no arguments.
|
2012-01-05 20:09:43 +01:00
|
|
|
|
|
2012-02-27 20:07:49 +01:00
|
|
|
|
## cluster.setupMaster([settings])
|
2012-01-05 20:09:43 +01:00
|
|
|
|
|
2012-02-27 20:07:49 +01:00
|
|
|
|
* `settings` {Object}
|
|
|
|
|
* `exec` {String} file path to worker file. (Default=`__filename`)
|
|
|
|
|
* `args` {Array} string arguments passed to worker.
|
|
|
|
|
(Default=`process.argv.slice(2)`)
|
|
|
|
|
* `silent` {Boolean} whether or not to send output to parent's stdio.
|
|
|
|
|
(Default=`false`)
|
|
|
|
|
|
|
|
|
|
The `setupMaster` is used to change the default 'fork' behavior. It takes
|
|
|
|
|
one option object argument.
|
2012-01-05 20:09:43 +01:00
|
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
|
|
var cluster = require("cluster");
|
|
|
|
|
cluster.setupMaster({
|
|
|
|
|
exec : "worker.js",
|
|
|
|
|
args : ["--use", "https"],
|
|
|
|
|
silent : true
|
|
|
|
|
});
|
|
|
|
|
cluster.autoFork();
|
|
|
|
|
|
2012-02-27 20:07:49 +01:00
|
|
|
|
## cluster.fork([env])
|
2012-01-05 20:09:43 +01:00
|
|
|
|
|
2012-02-27 20:07:49 +01:00
|
|
|
|
* `env` {Object} Key/value pairs to add to child process environment.
|
|
|
|
|
* return {Worker object}
|
2012-01-05 20:09:43 +01:00
|
|
|
|
|
2012-02-27 20:07:49 +01:00
|
|
|
|
Spawn a new worker process. This can only be called from the master process.
|
2012-01-05 20:09:43 +01:00
|
|
|
|
|
2012-02-27 20:07:49 +01:00
|
|
|
|
## cluster.settings
|
2012-01-05 20:09:43 +01:00
|
|
|
|
|
2012-02-27 20:07:49 +01:00
|
|
|
|
* {Object}
|
|
|
|
|
* `exec` {String} file path to worker file. Default: `__filename`
|
|
|
|
|
* `args` {Array} string arguments passed to worker.
|
|
|
|
|
(Default=`process.argv.slice(2)`)
|
|
|
|
|
* `silent` {Boolean} whether or not to send output to parent's stdio.
|
|
|
|
|
(Default=`false`)
|
2012-01-05 20:09:43 +01:00
|
|
|
|
|
2012-02-27 20:07:49 +01:00
|
|
|
|
All settings set by the `.setupMaster` is stored in this settings object.
|
|
|
|
|
This object is not supposed to be change or set manually.
|
2011-12-20 10:42:48 +01:00
|
|
|
|
|
2012-03-10 16:30:06 +01:00
|
|
|
|
## cluster.disconnect([callback])
|
|
|
|
|
|
|
|
|
|
* `callback` {Function} called when all workers are disconnected and handlers are closed
|
|
|
|
|
|
|
|
|
|
When calling this method all workers will commit a graceful suicide. When they are
|
|
|
|
|
disconnected all internal handlers will be closed, allowing the master process to
|
|
|
|
|
die graceful if no other event is waiting.
|
|
|
|
|
|
|
|
|
|
The method takes an optional callback argument there will be called when finished.
|
|
|
|
|
|
2012-02-27 20:07:49 +01:00
|
|
|
|
## cluster.workers
|
2011-12-20 10:42:48 +01:00
|
|
|
|
|
2012-02-27 20:07:49 +01:00
|
|
|
|
* {Object}
|
2011-12-20 10:42:48 +01:00
|
|
|
|
|
|
|
|
|
In the cluster all living worker objects are stored in this object by there
|
2012-01-05 08:57:54 +01:00
|
|
|
|
`uniqueID` as the key. This makes it easy to loop through all living workers.
|
2011-12-20 10:42:48 +01:00
|
|
|
|
|
2012-01-05 08:57:54 +01:00
|
|
|
|
// Go through all workers
|
2011-12-20 10:42:48 +01:00
|
|
|
|
function eachWorker(callback) {
|
|
|
|
|
for (var uniqueID in cluster.workers) {
|
|
|
|
|
callback(cluster.workers[uniqueID]);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
eachWorker(function (worker) {
|
|
|
|
|
worker.send('big announcement to all workers');
|
|
|
|
|
});
|
|
|
|
|
|
2012-01-05 08:57:54 +01:00
|
|
|
|
Should you wish to reference a worker over a communication channel, using
|
|
|
|
|
the worker's uniqueID is the easiest way to find the worker.
|
2011-12-20 10:42:48 +01:00
|
|
|
|
|
|
|
|
|
socket.on('data', function (uniqueID) {
|
|
|
|
|
var worker = cluster.workers[uniqueID];
|
|
|
|
|
});
|
|
|
|
|
|
2012-02-27 20:07:49 +01:00
|
|
|
|
## Class: Worker
|
2011-12-20 10:42:48 +01:00
|
|
|
|
|
2012-02-27 20:07:49 +01:00
|
|
|
|
A Worker object contains all public information and method about a worker.
|
2012-01-05 08:57:54 +01:00
|
|
|
|
In the master it can be obtained using `cluster.workers`. In a worker
|
|
|
|
|
it can be obtained using `cluster.worker`.
|
2011-12-20 10:42:48 +01:00
|
|
|
|
|
2012-02-27 20:07:49 +01:00
|
|
|
|
### worker.uniqueID
|
|
|
|
|
|
|
|
|
|
* {String}
|
|
|
|
|
|
|
|
|
|
Each new worker is given its own unique id, this id is stored in the
|
|
|
|
|
`uniqueID`.
|
|
|
|
|
|
|
|
|
|
While a worker is alive, this is the key that indexes it in
|
|
|
|
|
cluster.workers
|
|
|
|
|
|
|
|
|
|
### worker.process
|
|
|
|
|
|
|
|
|
|
* {ChildProcess object}
|
|
|
|
|
|
|
|
|
|
All workers are created using `child_process.fork()`, the returned object
|
|
|
|
|
from this function is stored in process.
|
2011-12-20 10:42:48 +01:00
|
|
|
|
|
2012-02-27 20:07:49 +01:00
|
|
|
|
See: [Child Process module](child_process.html)
|
2011-12-20 10:42:48 +01:00
|
|
|
|
|
2012-02-27 20:07:49 +01:00
|
|
|
|
### worker.suicide
|
2011-12-20 10:42:48 +01:00
|
|
|
|
|
2012-02-27 20:07:49 +01:00
|
|
|
|
* {Boolean}
|
2011-12-20 10:42:48 +01:00
|
|
|
|
|
2012-03-10 16:30:06 +01:00
|
|
|
|
This property is a boolean. It is set when a worker dies after calling `.destroy()`
|
|
|
|
|
or immediately after calling the `.disconnect()` method. Until then it is `undefined`.
|
2011-12-20 10:42:48 +01:00
|
|
|
|
|
2012-02-27 20:07:49 +01:00
|
|
|
|
### worker.send(message, [sendHandle])
|
|
|
|
|
|
|
|
|
|
* `message` {Object}
|
|
|
|
|
* `sendHandle` {Handle object}
|
|
|
|
|
|
|
|
|
|
This function is equal to the send methods provided by
|
|
|
|
|
`child_process.fork()`. In the master you should use this function to
|
|
|
|
|
send a message to a specific worker. However in a worker you can also use
|
|
|
|
|
`process.send(message)`, since this is the same function.
|
2011-12-20 10:42:48 +01:00
|
|
|
|
|
|
|
|
|
This example will echo back all messages from the master:
|
|
|
|
|
|
|
|
|
|
if (cluster.isMaster) {
|
|
|
|
|
var worker = cluster.fork();
|
|
|
|
|
worker.send('hi there');
|
|
|
|
|
|
|
|
|
|
} else if (cluster.isWorker) {
|
|
|
|
|
process.on('message', function (msg) {
|
|
|
|
|
process.send(msg);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2012-02-27 20:07:49 +01:00
|
|
|
|
### worker.destroy()
|
2011-12-20 10:42:48 +01:00
|
|
|
|
|
2012-02-27 20:07:49 +01:00
|
|
|
|
This function will kill the worker, and inform the master to not spawn a
|
|
|
|
|
new worker. To know the difference between suicide and accidentally death
|
|
|
|
|
a suicide boolean is set to true.
|
2011-12-20 10:42:48 +01:00
|
|
|
|
|
|
|
|
|
cluster.on('death', function (worker) {
|
|
|
|
|
if (worker.suicide === true) {
|
2012-01-17 05:36:01 +01:00
|
|
|
|
console.log('Oh, it was just suicide\' – no need to worry').
|
2011-12-20 10:42:48 +01:00
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
// destroy worker
|
|
|
|
|
worker.destroy();
|
|
|
|
|
|
2012-03-10 16:30:06 +01:00
|
|
|
|
|
|
|
|
|
## Worker.disconnect()
|
|
|
|
|
|
|
|
|
|
When calling this function the worker will no longer accept new connections, but
|
|
|
|
|
they will be handled by any other listening worker. Existing connection will be
|
|
|
|
|
allowed to exit as usual. When no more connections exist, the IPC channel to the worker
|
|
|
|
|
will close allowing it to die graceful. When the IPC channel is closed the `disconnect`
|
|
|
|
|
event will emit, this is then followed by the `death` event, there is emitted when
|
|
|
|
|
the worker finally die.
|
|
|
|
|
|
|
|
|
|
Because there might be long living connections, it is useful to implement a timeout.
|
|
|
|
|
This example ask the worker to disconnect and after 2 seconds it will destroy the
|
|
|
|
|
server. An alternative wound be to execute `worker.destroy()` after 2 seconds, but
|
|
|
|
|
that would normally not allow the worker to do any cleanup if needed.
|
|
|
|
|
|
|
|
|
|
if (cluster.isMaster) {
|
|
|
|
|
var worker = cluser.fork();
|
|
|
|
|
var timeout;
|
|
|
|
|
|
|
|
|
|
worker.on('listening', function () {
|
|
|
|
|
worker.disconnect();
|
|
|
|
|
timeout = setTimeout(function () {
|
|
|
|
|
worker.send('force kill');
|
|
|
|
|
}, 2000);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
worker.on('disconnect', function () {
|
|
|
|
|
clearTimeout(timeout);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
} else if (cluster.isWorker) {
|
|
|
|
|
var net = require('net');
|
|
|
|
|
var server = net.createServer(function (socket) {
|
|
|
|
|
// connection never end
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
server.listen(8000);
|
|
|
|
|
|
|
|
|
|
server.on('close', function () {
|
|
|
|
|
// cleanup
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
process.on('message', function (msg) {
|
|
|
|
|
if (msg === 'force kill') {
|
|
|
|
|
server.destroy();
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2012-02-27 20:07:49 +01:00
|
|
|
|
### Event: 'message'
|
2011-12-20 10:42:48 +01:00
|
|
|
|
|
2012-02-27 20:07:49 +01:00
|
|
|
|
* `message` {Object}
|
2011-12-20 10:42:48 +01:00
|
|
|
|
|
|
|
|
|
This event is the same as the one provided by `child_process.fork()`.
|
|
|
|
|
In the master you should use this event, however in a worker you can also use
|
|
|
|
|
`process.on('message')`
|
|
|
|
|
|
|
|
|
|
As an example, here is a cluster that keeps count of the number of requests
|
|
|
|
|
in the master process using the message system:
|
2011-11-04 23:33:49 +01:00
|
|
|
|
|
|
|
|
|
var cluster = require('cluster');
|
|
|
|
|
var http = require('http');
|
|
|
|
|
|
|
|
|
|
if (cluster.isMaster) {
|
|
|
|
|
|
2011-12-20 10:42:48 +01:00
|
|
|
|
// Keep track of http requests
|
|
|
|
|
var numReqs = 0;
|
2011-11-04 23:33:49 +01:00
|
|
|
|
setInterval(function() {
|
|
|
|
|
console.log("numReqs =", numReqs);
|
|
|
|
|
}, 1000);
|
2011-12-20 10:42:48 +01:00
|
|
|
|
|
|
|
|
|
// Count requestes
|
|
|
|
|
var messageHandler = function (msg) {
|
|
|
|
|
if (msg.cmd && msg.cmd == 'notifyRequest') {
|
|
|
|
|
numReqs += 1;
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// Start workers and listen for messages containing notifyRequest
|
|
|
|
|
cluster.autoFork();
|
|
|
|
|
Object.keys(cluster.workers).forEach(function (uniqueID) {
|
|
|
|
|
cluster.workers[uniqueID].on('message', messageHandler);
|
|
|
|
|
});
|
|
|
|
|
|
2011-11-04 23:33:49 +01:00
|
|
|
|
} else {
|
2011-12-20 10:42:48 +01:00
|
|
|
|
|
2011-11-04 23:33:49 +01:00
|
|
|
|
// Worker processes have a http server.
|
|
|
|
|
http.Server(function(req, res) {
|
|
|
|
|
res.writeHead(200);
|
|
|
|
|
res.end("hello world\n");
|
2011-12-20 10:42:48 +01:00
|
|
|
|
|
|
|
|
|
// notify master about the request
|
2011-11-04 23:33:49 +01:00
|
|
|
|
process.send({ cmd: 'notifyRequest' });
|
|
|
|
|
}).listen(8000);
|
|
|
|
|
}
|
|
|
|
|
|
2012-02-27 20:07:49 +01:00
|
|
|
|
### Event: 'online'
|
|
|
|
|
|
|
|
|
|
* `worker` {Worker object}
|
2011-11-04 23:33:49 +01:00
|
|
|
|
|
2011-12-20 10:42:48 +01:00
|
|
|
|
Same as the `cluster.on('online')` event, but emits only when the state change
|
|
|
|
|
on the specified worker.
|
2011-11-04 23:33:49 +01:00
|
|
|
|
|
2011-12-20 10:42:48 +01:00
|
|
|
|
cluster.fork().on('online', function (worker) {
|
|
|
|
|
// Worker is online
|
|
|
|
|
};
|
2011-10-27 01:21:08 +02:00
|
|
|
|
|
2012-02-27 20:07:49 +01:00
|
|
|
|
### Event: 'listening'
|
|
|
|
|
|
|
|
|
|
* `worker` {Worker object}
|
2011-10-27 01:21:08 +02:00
|
|
|
|
|
2011-12-20 10:42:48 +01:00
|
|
|
|
Same as the `cluster.on('listening')` event, but emits only when the state change
|
|
|
|
|
on the specified worker.
|
2011-10-27 01:21:08 +02:00
|
|
|
|
|
2011-12-20 10:42:48 +01:00
|
|
|
|
cluster.fork().on('listening', function (worker) {
|
|
|
|
|
// Worker is listening
|
|
|
|
|
};
|
2011-10-27 01:21:08 +02:00
|
|
|
|
|
2012-03-10 16:30:06 +01:00
|
|
|
|
## Event: 'disconnect'
|
|
|
|
|
|
|
|
|
|
* `worker` {Worker object}
|
|
|
|
|
|
|
|
|
|
Same as the `cluster.on('disconnect')` event, but emits only when the state change
|
|
|
|
|
on the specified worker.
|
|
|
|
|
|
|
|
|
|
cluster.fork().on('disconnect', function (worker) {
|
|
|
|
|
// Worker has disconnected
|
|
|
|
|
};
|
|
|
|
|
|
2012-02-27 20:07:49 +01:00
|
|
|
|
## Event: 'death'
|
2012-02-27 20:07:49 +01:00
|
|
|
|
|
|
|
|
|
* `worker` {Worker object}
|
2011-10-27 01:21:08 +02:00
|
|
|
|
|
2011-12-20 10:42:48 +01:00
|
|
|
|
Same as the `cluster.on('death')` event, but emits only when the state change
|
|
|
|
|
on the specified worker.
|
2011-12-19 20:48:03 +01:00
|
|
|
|
|
2011-12-20 10:42:48 +01:00
|
|
|
|
cluster.fork().on('death', function (worker) {
|
|
|
|
|
// Worker has died
|
|
|
|
|
};
|