-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstart.js
More file actions
40 lines (37 loc) · 1.1 KB
/
start.js
File metadata and controls
40 lines (37 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
var cluster = require('cluster'),
stopSignals = [
'SIGHUP', 'SIGINT', 'SIGQUIT', 'SIGILL', 'SIGTRAP', 'SIGABRT',
'SIGBUS', 'SIGFPE', 'SIGUSR1', 'SIGSEGV', 'SIGUSR2', 'SIGTERM'
],
production = process.env.NODE_ENV == 'production';
var stopping = false;
cluster.on('disconnect', function(worker) {
if (production) {
if (!stopping) {
cluster.fork();
}
} else {
process.exit(1);
}
});
if (cluster.isMaster) {
var workerCount = process.env.NODE_CLUSTER_WORKERS || 1;
console.log(`Starting ${workerCount} workers...`);
for (var i = 0; i < workerCount; i++) {
cluster.fork();
}
if (production) {
stopSignals.forEach(function(signal) {
process.on(signal, function() {
console.log(`Got ${signal}, stopping workers...`);
stopping = true;
cluster.disconnect(function() {
console.log('All workers stopped, exiting.');
process.exit(0);
});
});
});
}
} else {
require('./server.js');
}