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

15
app.js
View File

@ -124,16 +124,25 @@ process.on('SIGHUP', function() {
}); });
process.on('SIGTERM', function () { process.on('SIGTERM', function () {
server.batch.stop(); 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);
}
server.batch.drain(function (err) { server.batch.drain(function (err) {
if (err) { if (err) {
console.log('Exit with error'); global.logger.error(err);
return process.exit(1); return process.exit(1);
} }
console.log('Exit gracefully'); global.logger.info('Exit gracefully');
process.exit(0); process.exit(0);
}); });
});
});
}); });
function isGteMinVersion(version, minVersion) { function isGteMinVersion(version, minVersion) {

View File

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