-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcluster.js
81 lines (70 loc) · 1.71 KB
/
cluster.js
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
var cluster = Npm.require('cluster');
var os = Npm.require('os');
var settings = _.defaults(Meteor.settings.cluster || {}, {
disable: false,
count: 1,
exec: ''
});
Cluster = {
masterCallbacks: [],
workerCallbacks: [],
isMaster: cluster.isMaster,
isWorker: cluster.isWorker,
startupMaster: function(fn) {
this.masterCallbacks.push(fn)
},
startupWorker: function(fn) {
this.workerCallbacks.push(fn);
},
runCallbacks: function(callbacks) {
_.each(callbacks, function(callback) {
callback.call(this);
});
},
startup: function() {
// skip for meteorhacks:cluster workers
if (process.env['CLUSTER_WORKER_ID']) {
return;
}
if (settings.disable) return;
if (this.isMaster) {
if (settings.exec) {
cluster.setupMaster({
exec: 'assets/app/' + settings.exec
});
this.start();
} else {
this.start();
this.runCallbacks(this.masterCallbacks);
}
} else {
this.runCallbacks(this.workerCallbacks);
}
},
start: function() {
self = this;
if (_.size(cluster.workers) === 0) {
for (var i = 0; i < settings.count; i++) {
var worker = cluster.fork( {PORT: 0, VELOCITY: 0} );
worker.on('exit', function() {
self.log('Worker process killed.');
});
}
} else {
this.log('Workers have already been started.')
}
},
stop: function() {
_.each(cluster.workers, function(worker) {
worker.kill();
});
},
log: function() {
args = _.values(arguments);
args.unshift(cluster.isMaster ? 'MASTER:' : 'PID ' + process.pid + ':');
console.log.apply(this, args);
}
};
Meteor.startup(function(){
Cluster.startup();
});