This is an abstraction layer based on EventEmitter to provide a simple way of dealing with cluster support added on v0.6 of NodeJS.
npm install rack
Don't forget to check the examples folder. Every available functionality is there.
var rack = require("rack").create();
rack.on("master-start", function () {
console.log("master starting..");
});
rack.on("worker-start", function () {
console.log("worker starting..");
});
rack.start();
Create a new Rack.
Returns the number of detected CPU on your machine. This is used by Rack.start() if you do not specify the number of workers you want - it will use the number of CPU you have.
You can use this to start a multiple of workers based on CPU count.
var cluster = require("rack"),
rack = cluster.create();
rack.start(cluster.cores() * 2);
This happens once you execute your script and will trigger only once for the master process.
This happens for every worker that is started. Later on this can also happen when a worker dies and needs to start again.
This happens when a worker dies. You can start a new one by calling
rack.worker()
.
This happens when a workers die too often.
This happens when a worker sends a message to the master and vice-versa.
Start a total of n
workers.
Start worker monitor and start a new worker whenever one dies. If
max
workers die during freq
miliseconds, monitor will not restart
the last one and will trigger worker-error
event.
This is the internal method to start a new worker. After calling .start()
,
if you want to start more workers just call this method.
Send a message from master to all workers. This will not work on workers.
Kill all workers and start new ones with an interval
(in ms) between them.
If cb
is specified, it will be called in the end of the restart process.