Skip to content
Open
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 19 additions & 1 deletion cluster.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ const WORKER_CNT = config.workerVal;
const activeWorkers = [];

const RESTART_FILE = path.join(codeDir, 'tmp/restart.txt');
const STOP_FILE = path.join(codeDir, 'tmp/stop.txt');
let stopCalled = false;

const forceKill = (worker) => {
if (!worker.isDead()) {
Expand Down Expand Up @@ -52,7 +54,15 @@ if (cluster.isMaster) {
logger.info(
`worker ${worker.process.pid} died with signal ${signal} code ${code}`
);
if (activeWorkers.length == 0) spawnNewWorkers();
if (stopCalled) {
if (activeWorkers.length == 0) {
logger.info(
`All workers stopped. Exiting master process ${process.pid}`
);
process.exit(0);
}
}
if (activeWorkers.length == 0 && !stopCalled) spawnNewWorkers();
});

spawnNewWorkers();
Expand All @@ -65,6 +75,14 @@ if (cluster.isMaster) {
spawnNewWorkers();
}
});
watch(STOP_FILE, () => {
logger.info(`Stopping cluster gracefully`)
stopCalled = true;
if (Date.now() > currTime) {
currTime = Date.now();
disconnectOldWorkers();
}
});
} else {
const proxy = new Proxy();
cluster.worker.on('disconnect', () => {
Expand Down
Empty file added tmp/stop.txt
Empty file.