Improve shutdown

This commit is contained in:
Daniel García Aubert 2019-04-04 16:44:54 +02:00
parent 1905a2bd28
commit 3ed4b142c0
2 changed files with 20 additions and 8 deletions

25
app.js
View File

@ -124,15 +124,24 @@ process.on('SIGHUP', function() {
});
process.on('SIGTERM', function () {
server.batch.stop();
server.batch.drain(function (err) {
if (err) {
console.log('Exit with error');
return process.exit(1);
}
global.logger.debug('Signal TERM Received');
listener.close(function () {
global.logger.debug('Http server closed');
server.batch.stop(function (err) {
if (err) {
global.logger.error(err);
}
console.log('Exit gracefully');
process.exit(0);
server.batch.drain(function (err) {
if (err) {
global.logger.error(err);
return process.exit(1);
}
global.logger.info('Exit gracefully');
process.exit(0);
});
});
});
});

View File

@ -152,6 +152,8 @@ Batch.prototype.drain = function (callback) {
var workingUsers = this.getWorkInProgressUsers();
var batchQueues = queue(workingUsers.length);
this.logger.debug('Drain batch-queries processing');
workingUsers.forEach(function (user) {
batchQueues.defer(self._drainJob.bind(self), user);
});
@ -197,6 +199,7 @@ Batch.prototype._drainJob = function (user, callback) {
};
Batch.prototype.stop = function (callback) {
this.logger.debug('Stop batch-queries processing');
this.removeAllListeners();
this._stopScheduleInterval();
this.jobSubscriber.unsubscribe(callback);