2015-12-09 07:02:08 +08:00
|
|
|
'use strict';
|
|
|
|
|
2015-12-23 06:13:33 +08:00
|
|
|
var util = require('util');
|
|
|
|
var EventEmitter = require('events').EventEmitter;
|
2016-05-18 17:06:49 +08:00
|
|
|
var debug = require('./util/debug')('batch');
|
2016-05-18 17:55:58 +08:00
|
|
|
var forever = require('./util/forever');
|
2016-01-13 23:25:25 +08:00
|
|
|
var queue = require('queue-async');
|
2016-10-11 01:54:31 +08:00
|
|
|
var Locker = require('./leader/locker');
|
2016-10-13 03:32:29 +08:00
|
|
|
var HostUserQueueMover = require('./maintenance/host-user-queue-mover');
|
2015-12-09 07:02:08 +08:00
|
|
|
|
2016-10-12 18:26:50 +08:00
|
|
|
function Batch(name, jobSubscriber, jobQueue, jobRunner, jobService, jobPublisher, redisConfig, logger) {
|
2015-12-23 03:12:10 +08:00
|
|
|
EventEmitter.call(this);
|
2016-10-11 01:46:07 +08:00
|
|
|
this.name = name || 'batch';
|
2016-01-08 18:32:01 +08:00
|
|
|
this.jobSubscriber = jobSubscriber;
|
2016-10-12 18:26:50 +08:00
|
|
|
this.jobQueue = jobQueue;
|
2016-01-08 18:32:01 +08:00
|
|
|
this.jobRunner = jobRunner;
|
2016-05-14 00:50:55 +08:00
|
|
|
this.jobService = jobService;
|
2016-10-11 01:47:50 +08:00
|
|
|
this.jobPublisher = jobPublisher;
|
2016-09-29 21:09:36 +08:00
|
|
|
this.logger = logger;
|
2016-10-11 01:54:31 +08:00
|
|
|
this.locker = Locker.create('redis-distlock', { redisConfig: redisConfig });
|
2016-10-13 03:32:29 +08:00
|
|
|
this.hostUserQueueMover = new HostUserQueueMover(jobQueue, jobService, this.locker, redisConfig);
|
2016-10-12 18:26:50 +08:00
|
|
|
|
|
|
|
// map: host => jobId
|
|
|
|
this.workingQueues = {};
|
2015-12-23 03:12:10 +08:00
|
|
|
}
|
|
|
|
util.inherits(Batch, EventEmitter);
|
|
|
|
|
2016-05-14 00:50:55 +08:00
|
|
|
module.exports = Batch;
|
|
|
|
|
2015-12-23 03:12:10 +08:00
|
|
|
Batch.prototype.start = function () {
|
2016-10-13 03:32:29 +08:00
|
|
|
this.hostUserQueueMover.moveOldJobs(function() {
|
|
|
|
this.subscribe();
|
|
|
|
}.bind(this));
|
|
|
|
};
|
|
|
|
|
|
|
|
Batch.prototype.subscribe = function () {
|
2016-01-13 23:25:25 +08:00
|
|
|
var self = this;
|
2015-12-09 07:02:08 +08:00
|
|
|
|
2016-10-12 18:26:50 +08:00
|
|
|
this.jobSubscriber.subscribe(
|
2016-10-13 03:32:29 +08:00
|
|
|
function onJobHandler(user, host) {
|
|
|
|
debug('onJobHandler(%s, %s)', user, host);
|
|
|
|
if (self.isProcessingUser(user)) {
|
|
|
|
return debug('%s is already processing user=%s', self.name, user);
|
2016-10-12 18:26:50 +08:00
|
|
|
}
|
2015-12-31 19:33:11 +08:00
|
|
|
|
2016-10-12 18:26:50 +08:00
|
|
|
// do forever, it does not throw a stack overflow
|
|
|
|
forever(
|
|
|
|
function (next) {
|
2016-10-12 19:11:20 +08:00
|
|
|
self.locker.lock(host, function(err) {
|
2016-10-12 18:26:50 +08:00
|
|
|
// we didn't get the lock for the host
|
|
|
|
if (err) {
|
2016-10-13 03:32:29 +08:00
|
|
|
debug(
|
|
|
|
'Could not lock host=%s for user=%s from %s. Reason: %s',
|
|
|
|
host, self.name, user, err.message
|
|
|
|
);
|
2016-10-12 18:26:50 +08:00
|
|
|
return next(err);
|
|
|
|
}
|
2016-10-13 03:32:29 +08:00
|
|
|
debug('Locked host=%s for user=%s from %s', host, user, self.name);
|
|
|
|
self.processNextJob(user, next);
|
2016-10-12 18:26:50 +08:00
|
|
|
});
|
|
|
|
},
|
|
|
|
function (err) {
|
2016-10-12 23:42:46 +08:00
|
|
|
if (err) {
|
|
|
|
debug(err.name === 'EmptyQueue' ? err.message : err);
|
|
|
|
}
|
|
|
|
|
2016-10-13 03:32:29 +08:00
|
|
|
self.finishedProcessingUser(user);
|
2016-10-12 18:26:50 +08:00
|
|
|
self.locker.unlock(host, debug);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
},
|
|
|
|
function onJobSubscriberReady(err) {
|
|
|
|
if (err) {
|
|
|
|
return self.emit('error', err);
|
2016-10-12 06:10:40 +08:00
|
|
|
}
|
2016-10-11 01:54:31 +08:00
|
|
|
|
2016-10-12 18:26:50 +08:00
|
|
|
self.emit('ready');
|
2016-07-22 19:47:14 +08:00
|
|
|
}
|
2016-10-12 18:26:50 +08:00
|
|
|
);
|
2015-12-31 19:33:11 +08:00
|
|
|
};
|
|
|
|
|
2016-10-13 03:32:29 +08:00
|
|
|
Batch.prototype.processNextJob = function (user, callback) {
|
|
|
|
// This is missing the logic for processing several users within the same host
|
|
|
|
// It requires to:
|
|
|
|
// - Take care of number of jobs running at the same time per host.
|
|
|
|
// - Execute user jobs in order.
|
2016-01-13 23:25:25 +08:00
|
|
|
var self = this;
|
2016-10-13 03:32:29 +08:00
|
|
|
self.jobQueue.dequeue(user, function (err, jobId) {
|
2016-05-14 00:50:55 +08:00
|
|
|
if (err) {
|
2016-10-12 18:26:50 +08:00
|
|
|
return callback(err);
|
2016-05-14 00:50:55 +08:00
|
|
|
}
|
|
|
|
|
2016-10-12 18:26:50 +08:00
|
|
|
if (!jobId) {
|
2016-10-13 03:32:29 +08:00
|
|
|
var emptyQueueError = new Error('Queue for user="' + user + '" is empty');
|
2016-10-12 18:26:50 +08:00
|
|
|
emptyQueueError.name = 'EmptyQueue';
|
|
|
|
return callback(emptyQueueError);
|
|
|
|
}
|
2016-05-14 00:50:55 +08:00
|
|
|
|
2016-10-13 03:32:29 +08:00
|
|
|
self.setProcessingJobId(user, jobId);
|
2016-05-14 00:50:55 +08:00
|
|
|
|
2016-10-12 18:26:50 +08:00
|
|
|
self.jobRunner.run(jobId, function (err, job) {
|
2016-10-13 03:32:29 +08:00
|
|
|
self.setProcessingJobId(user, null);
|
2016-05-14 00:50:55 +08:00
|
|
|
|
2016-10-12 18:26:50 +08:00
|
|
|
if (err) {
|
|
|
|
debug(err);
|
|
|
|
if (err.name === 'JobNotRunnable') {
|
2016-10-11 01:54:31 +08:00
|
|
|
return callback();
|
|
|
|
}
|
2016-10-12 18:26:50 +08:00
|
|
|
return callback(err);
|
|
|
|
}
|
2016-10-11 01:54:31 +08:00
|
|
|
|
2016-10-13 03:32:29 +08:00
|
|
|
debug('Job=%s status=%s user=%s (failed_reason=%s)', jobId, job.data.status, user, job.failed_reason);
|
2016-05-14 00:50:55 +08:00
|
|
|
|
2016-10-12 18:26:50 +08:00
|
|
|
self.logger.log(job);
|
2016-09-29 21:09:36 +08:00
|
|
|
|
2016-10-12 18:26:50 +08:00
|
|
|
self.emit('job:' + job.data.status, jobId);
|
2016-05-14 00:50:55 +08:00
|
|
|
|
2016-10-12 18:26:50 +08:00
|
|
|
callback();
|
2016-05-14 00:50:55 +08:00
|
|
|
});
|
|
|
|
});
|
|
|
|
};
|
2016-01-13 23:25:25 +08:00
|
|
|
|
2016-05-14 00:50:55 +08:00
|
|
|
Batch.prototype.drain = function (callback) {
|
|
|
|
var self = this;
|
2016-10-13 03:32:29 +08:00
|
|
|
var workingUsers = this.getWorkingUsers();
|
|
|
|
var batchQueues = queue(workingUsers.length);
|
2016-01-13 23:25:25 +08:00
|
|
|
|
2016-10-13 03:32:29 +08:00
|
|
|
workingUsers.forEach(function (user) {
|
|
|
|
batchQueues.defer(self._drainJob.bind(self), user);
|
2016-01-13 23:25:25 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
batchQueues.awaitAll(function (err) {
|
|
|
|
if (err) {
|
2016-05-18 17:06:49 +08:00
|
|
|
debug('Something went wrong draining', err);
|
2016-01-13 23:25:25 +08:00
|
|
|
} else {
|
2016-05-18 17:06:49 +08:00
|
|
|
debug('Drain complete');
|
2016-01-13 23:25:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
callback();
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2016-10-13 03:32:29 +08:00
|
|
|
Batch.prototype._drainJob = function (user, callback) {
|
2016-01-13 23:25:25 +08:00
|
|
|
var self = this;
|
2016-10-13 03:32:29 +08:00
|
|
|
var job_id = this.getProcessingJobId(user);
|
2016-01-25 21:51:37 +08:00
|
|
|
|
|
|
|
if (!job_id) {
|
|
|
|
return process.nextTick(function () {
|
|
|
|
return callback();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2016-05-14 00:50:55 +08:00
|
|
|
this.jobService.drain(job_id, function (err) {
|
2016-01-26 03:07:41 +08:00
|
|
|
if (err && err.name === 'CancelNotAllowedError') {
|
|
|
|
return callback();
|
|
|
|
}
|
|
|
|
|
2016-01-13 23:25:25 +08:00
|
|
|
if (err) {
|
|
|
|
return callback(err);
|
|
|
|
}
|
|
|
|
|
2016-10-13 03:32:29 +08:00
|
|
|
self.jobQueue.enqueueFirst(user, job_id, callback);
|
2016-01-13 23:25:25 +08:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2016-10-12 18:26:50 +08:00
|
|
|
Batch.prototype.stop = function (callback) {
|
2016-10-12 22:43:18 +08:00
|
|
|
this.removeAllListeners();
|
2016-10-12 18:26:50 +08:00
|
|
|
this.jobSubscriber.unsubscribe(callback);
|
|
|
|
};
|
|
|
|
|
2016-10-13 03:32:29 +08:00
|
|
|
Batch.prototype.isProcessingUser = function(user) {
|
|
|
|
return this.workingQueues.hasOwnProperty(user);
|
2016-10-12 18:26:50 +08:00
|
|
|
};
|
|
|
|
|
2016-10-13 03:32:29 +08:00
|
|
|
Batch.prototype.getWorkingUsers = function() {
|
2016-10-12 18:26:50 +08:00
|
|
|
return Object.keys(this.workingQueues);
|
|
|
|
};
|
|
|
|
|
2016-10-13 03:32:29 +08:00
|
|
|
Batch.prototype.setProcessingJobId = function(user, jobId) {
|
|
|
|
this.workingQueues[user] = jobId;
|
2016-10-12 18:26:50 +08:00
|
|
|
};
|
|
|
|
|
2016-10-13 03:32:29 +08:00
|
|
|
Batch.prototype.getProcessingJobId = function(user) {
|
|
|
|
return this.workingQueues[user];
|
2016-10-12 18:26:50 +08:00
|
|
|
};
|
|
|
|
|
2016-10-13 03:32:29 +08:00
|
|
|
Batch.prototype.finishedProcessingUser = function(user) {
|
|
|
|
delete this.workingQueues[user];
|
2016-01-06 00:42:28 +08:00
|
|
|
};
|