forked from SocketCluster/socketcluster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
scworkercluster.js
212 lines (184 loc) · 5.47 KB
/
scworkercluster.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
var cluster = require('cluster');
var scErrors = require('sc-errors');
var InvalidActionError = scErrors.InvalidActionError;
var workerInitOptions = JSON.parse(process.env.workerInitOptions);
var processTermTimeout = 10000;
var forceKillTimeout = 15000;
var forceKillSignal = 'SIGHUP';
process.on('disconnect', function () {
process.exit();
});
var scWorkerCluster;
var workers;
var alive = true;
var hasExited = false;
var terminatedCount = 0;
var childExitMessage={};
var sendErrorToMaster = function (err) {
var error = scErrors.dehydrateError(err, true);
process.send({
type: 'error',
data: {
pid: process.pid,
error: error
}
});
};
var terminate = function () {
alive = false;
setTimeout(function () {
if (!hasExited) {
hasExited = true;
process.exit();
}
}, processTermTimeout);
};
process.on('message', function (masterMessage) {
if (masterMessage.type == 'masterMessage' || masterMessage.type == 'masterResponse') {
var targetWorker = workers[masterMessage.workerId];
if (targetWorker) {
targetWorker.send(masterMessage);
} else {
if (masterMessage.type == 'masterMessage') {
var errorMessage = 'Cannot send message to worker with id ' + masterMessage.workerId +
' because the worker does not exist';
var notFoundError = new InvalidActionError(errorMessage);
sendErrorToMaster(notFoundError);
if (masterMessage.cid) {
process.send({
type: 'workerClusterResponse',
error: scErrors.dehydrateError(notFoundError, true),
data: null,
workerId: masterMessage.workerId,
rid: masterMessage.cid
});
}
} else {
var errorMessage = 'Cannot send response to worker with id ' + masterMessage.workerId +
' because the worker does not exist';
var notFoundError = new InvalidActionError(errorMessage);
sendErrorToMaster(notFoundError);
}
}
} else {
if (masterMessage.type == 'terminate' && masterMessage.data.killClusterMaster) {
terminate();
}
if (masterMessage.type == 'terminate' && forceKillTimeout) {
childExitMessage = {}
setTimeout(function () {
for (var i in workers) {
if (!childExitMessage[i]) {
var errorMessage = forceKillTimeout + " ms no exit signal from Worker " + i + "(PID:"+workers[i].process.pid+') force kill it';
var processExitError = new ProcessExitError(errorMessage);
sendErrorToMaster(processExitError);
process.kill(workers[i].process.pid,forceKillSignal);
}
}
}, forceKillTimeout);
}
for (var i in workers) {
if (workers.hasOwnProperty(i)) {
workers[i].send(masterMessage);
}
}
}
});
process.on('uncaughtException', function (err) {
sendErrorToMaster(err);
process.exit(1);
});
function SCWorkerCluster(options) {
if (scWorkerCluster) {
// SCWorkerCluster is a singleton; it can only be instantiated once per process.
throw new InvalidActionError('Attempted to instantiate a worker cluster which has already been instantiated');
}
options = options || {};
scWorkerCluster = this;
if (options.run != null) {
this.run = options.run;
}
this._init(workerInitOptions);
}
SCWorkerCluster.create = function (options) {
return new SCWorkerCluster(options);
};
SCWorkerCluster.prototype._init = function (options) {
if (options.schedulingPolicy != null) {
cluster.schedulingPolicy = options.schedulingPolicy;
}
if (options.processTermTimeout != null) {
processTermTimeout = options.processTermTimeout;
}
if (options.forceKillTimeout != null) {
forceKillTimeout = options.forceKillTimeout;
}
if (options.forceKillSignal != null) {
forceKillSignal = options.forceKillSignal;
}
cluster.setupMaster({
exec: options.paths.appWorkerControllerPath,
});
var workerCount = options.workerCount;
var readyCount = 0;
var isReady = false;
workers = [];
this.workers = workers;
var launchWorker = function (i, respawn) {
var workerInitOptions = options;
workerInitOptions.id = i;
var worker = cluster.fork({
workerInitOptions: JSON.stringify(workerInitOptions)
});
workers[i] = worker;
worker.on('error', sendErrorToMaster);
worker.on('message', function (workerMessage) {
if (workerMessage.type == 'ready') {
process.send({
type: 'workerStart',
data: {
id: i,
pid: worker.process.pid,
respawn: respawn || false
}
});
if (!isReady && ++readyCount >= workerCount) {
isReady = true;
process.send({
type: 'ready'
});
}
} else {
process.send(workerMessage);
}
});
worker.on('exit', function (code, signal) {
childExitMessage[i] = true;
if (alive) {
process.send({
type: 'workerExit',
data: {
id: i,
pid: worker.process.pid,
code: code,
signal: signal
}
});
if (options.rebootWorkerOnCrash) {
launchWorker(i, true);
}
} else if (++terminatedCount >= workers.length) {
if (!hasExited) {
hasExited = true;
process.exit();
}
}
});
};
for (var i = 0; i < workerCount; i++) {
launchWorker(i);
}
this.run();
};
SCWorkerCluster.prototype.run = function () {};
module.exports = SCWorkerCluster;