2018-07-10 11:02:20 -04:00
|
|
|
import * as Bull from 'bull'
|
2018-02-27 11:42:32 -05:00
|
|
|
import { JobState, JobType } from '../../../shared/models'
|
2018-01-25 09:05:18 -05:00
|
|
|
import { logger } from '../../helpers/logger'
|
2018-05-14 11:51:15 -04:00
|
|
|
import { Redis } from '../redis'
|
2019-04-11 08:26:41 -04:00
|
|
|
import { JOB_ATTEMPTS, JOB_COMPLETED_LIFETIME, JOB_CONCURRENCY, JOB_TTL, REPEAT_JOBS, WEBSERVER } from '../../initializers/constants'
|
2018-01-25 09:05:18 -05:00
|
|
|
import { ActivitypubHttpBroadcastPayload, processActivityPubHttpBroadcast } from './handlers/activitypub-http-broadcast'
|
|
|
|
import { ActivitypubHttpFetcherPayload, processActivityPubHttpFetcher } from './handlers/activitypub-http-fetcher'
|
|
|
|
import { ActivitypubHttpUnicastPayload, processActivityPubHttpUnicast } from './handlers/activitypub-http-unicast'
|
2018-01-30 07:27:07 -05:00
|
|
|
import { EmailPayload, processEmail } from './handlers/email'
|
2019-03-19 12:10:53 -04:00
|
|
|
import { processVideoTranscoding, VideoTranscodingPayload } from './handlers/video-transcoding'
|
2018-04-18 09:32:40 -04:00
|
|
|
import { ActivitypubFollowPayload, processActivityPubFollow } from './handlers/activitypub-follow'
|
2018-08-02 09:34:09 -04:00
|
|
|
import { processVideoImport, VideoImportPayload } from './handlers/video-import'
|
2018-11-15 10:18:12 -05:00
|
|
|
import { processVideosViews } from './handlers/video-views'
|
2018-11-20 04:05:51 -05:00
|
|
|
import { refreshAPObject, RefreshPayload } from './handlers/activitypub-refresher'
|
2019-03-19 12:10:53 -04:00
|
|
|
import { processVideoFileImport, VideoFileImportPayload } from './handlers/video-file-import'
|
2018-01-25 09:05:18 -05:00
|
|
|
|
|
|
|
type CreateJobArgument =
|
|
|
|
{ type: 'activitypub-http-broadcast', payload: ActivitypubHttpBroadcastPayload } |
|
|
|
|
{ type: 'activitypub-http-unicast', payload: ActivitypubHttpUnicastPayload } |
|
|
|
|
{ type: 'activitypub-http-fetcher', payload: ActivitypubHttpFetcherPayload } |
|
2018-04-18 09:32:40 -04:00
|
|
|
{ type: 'activitypub-follow', payload: ActivitypubFollowPayload } |
|
2018-06-07 03:43:18 -04:00
|
|
|
{ type: 'video-file-import', payload: VideoFileImportPayload } |
|
2019-03-19 12:00:08 -04:00
|
|
|
{ type: 'video-transcoding', payload: VideoTranscodingPayload } |
|
2018-08-02 09:34:09 -04:00
|
|
|
{ type: 'email', payload: EmailPayload } |
|
2018-08-29 10:26:25 -04:00
|
|
|
{ type: 'video-import', payload: VideoImportPayload } |
|
2018-11-20 04:05:51 -05:00
|
|
|
{ type: 'activitypub-refresher', payload: RefreshPayload } |
|
2018-08-29 10:26:25 -04:00
|
|
|
{ type: 'videos-views', payload: {} }
|
2018-01-25 09:05:18 -05:00
|
|
|
|
2019-03-19 12:00:08 -04:00
|
|
|
const handlers: { [ id in (JobType | 'video-file') ]: (job: Bull.Job) => Promise<any>} = {
|
2018-01-25 09:05:18 -05:00
|
|
|
'activitypub-http-broadcast': processActivityPubHttpBroadcast,
|
|
|
|
'activitypub-http-unicast': processActivityPubHttpUnicast,
|
|
|
|
'activitypub-http-fetcher': processActivityPubHttpFetcher,
|
2018-04-18 09:32:40 -04:00
|
|
|
'activitypub-follow': processActivityPubFollow,
|
2018-06-07 03:43:18 -04:00
|
|
|
'video-file-import': processVideoFileImport,
|
2019-03-19 12:00:08 -04:00
|
|
|
'video-transcoding': processVideoTranscoding,
|
|
|
|
'video-file': processVideoTranscoding, // TODO: remove it (changed in 1.3)
|
2018-08-02 09:34:09 -04:00
|
|
|
'email': processEmail,
|
2018-08-29 10:26:25 -04:00
|
|
|
'video-import': processVideoImport,
|
2018-11-20 04:05:51 -05:00
|
|
|
'videos-views': processVideosViews,
|
|
|
|
'activitypub-refresher': refreshAPObject
|
2018-01-25 09:05:18 -05:00
|
|
|
}
|
|
|
|
|
2018-07-10 11:02:20 -04:00
|
|
|
const jobTypes: JobType[] = [
|
|
|
|
'activitypub-follow',
|
2018-05-09 03:08:22 -04:00
|
|
|
'activitypub-http-broadcast',
|
|
|
|
'activitypub-http-fetcher',
|
2018-07-10 11:02:20 -04:00
|
|
|
'activitypub-http-unicast',
|
|
|
|
'email',
|
2019-03-19 12:00:08 -04:00
|
|
|
'video-transcoding',
|
2018-08-02 09:34:09 -04:00
|
|
|
'video-file-import',
|
2018-08-29 10:26:25 -04:00
|
|
|
'video-import',
|
2018-11-20 04:05:51 -05:00
|
|
|
'videos-views',
|
|
|
|
'activitypub-refresher'
|
2018-05-09 03:08:22 -04:00
|
|
|
]
|
|
|
|
|
2018-01-25 09:05:18 -05:00
|
|
|
class JobQueue {
|
|
|
|
|
|
|
|
private static instance: JobQueue
|
|
|
|
|
2018-07-10 11:02:20 -04:00
|
|
|
private queues: { [ id in JobType ]?: Bull.Queue } = {}
|
2018-01-25 09:05:18 -05:00
|
|
|
private initialized = false
|
2018-02-27 10:57:53 -05:00
|
|
|
private jobRedisPrefix: string
|
2018-01-25 09:05:18 -05:00
|
|
|
|
|
|
|
private constructor () {}
|
|
|
|
|
2018-02-12 05:25:09 -05:00
|
|
|
async init () {
|
2018-01-25 09:05:18 -05:00
|
|
|
// Already initialized
|
|
|
|
if (this.initialized === true) return
|
|
|
|
this.initialized = true
|
|
|
|
|
2019-04-11 05:33:44 -04:00
|
|
|
this.jobRedisPrefix = 'bull-' + WEBSERVER.HOST
|
2018-07-10 11:02:20 -04:00
|
|
|
const queueOptions = {
|
2018-02-27 10:57:53 -05:00
|
|
|
prefix: this.jobRedisPrefix,
|
2019-04-25 05:27:13 -04:00
|
|
|
redis: Redis.getRedisClientOptions(),
|
2018-07-30 13:18:01 -04:00
|
|
|
settings: {
|
|
|
|
maxStalledCount: 10 // transcoding could be long, so jobs can often be interrupted by restarts
|
|
|
|
}
|
2018-07-10 11:02:20 -04:00
|
|
|
}
|
2018-01-30 07:27:07 -05:00
|
|
|
|
2018-07-10 11:02:20 -04:00
|
|
|
for (const handlerName of Object.keys(handlers)) {
|
|
|
|
const queue = new Bull(handlerName, queueOptions)
|
|
|
|
const handler = handlers[handlerName]
|
2018-01-25 09:05:18 -05:00
|
|
|
|
2018-07-10 11:02:20 -04:00
|
|
|
queue.process(JOB_CONCURRENCY[handlerName], handler)
|
2018-08-03 04:19:51 -04:00
|
|
|
.catch(err => logger.error('Error in job queue processor %s.', handlerName, { err }))
|
2018-08-03 03:27:30 -04:00
|
|
|
|
|
|
|
queue.on('failed', (job, err) => {
|
|
|
|
logger.error('Cannot execute job %d in queue %s.', job.id, handlerName, { payload: job.data, err })
|
|
|
|
})
|
2018-02-12 05:25:09 -05:00
|
|
|
|
2018-07-10 11:02:20 -04:00
|
|
|
queue.on('error', err => {
|
|
|
|
logger.error('Error in job queue %s.', handlerName, { err })
|
2018-01-25 09:05:18 -05:00
|
|
|
})
|
2018-07-10 11:02:20 -04:00
|
|
|
|
|
|
|
this.queues[handlerName] = queue
|
2018-01-25 09:05:18 -05:00
|
|
|
}
|
2018-08-29 10:26:25 -04:00
|
|
|
|
|
|
|
this.addRepeatableJobs()
|
2018-01-25 09:05:18 -05:00
|
|
|
}
|
|
|
|
|
2018-07-30 12:49:54 -04:00
|
|
|
terminate () {
|
|
|
|
for (const queueName of Object.keys(this.queues)) {
|
|
|
|
const queue = this.queues[queueName]
|
|
|
|
queue.close()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-10 11:02:20 -04:00
|
|
|
createJob (obj: CreateJobArgument) {
|
|
|
|
const queue = this.queues[obj.type]
|
|
|
|
if (queue === undefined) {
|
|
|
|
logger.error('Unknown queue %s: cannot create job.', obj.type)
|
2018-07-25 16:01:25 -04:00
|
|
|
throw Error('Unknown queue, cannot create job')
|
2018-07-10 11:02:20 -04:00
|
|
|
}
|
2018-01-25 09:05:18 -05:00
|
|
|
|
2018-07-10 11:02:20 -04:00
|
|
|
const jobArgs: Bull.JobOptions = {
|
|
|
|
backoff: { delay: 60 * 1000, type: 'exponential' },
|
2018-08-03 04:19:51 -04:00
|
|
|
attempts: JOB_ATTEMPTS[obj.type],
|
|
|
|
timeout: JOB_TTL[obj.type]
|
2018-07-10 11:02:20 -04:00
|
|
|
}
|
2018-05-09 03:08:22 -04:00
|
|
|
|
2018-07-10 11:02:20 -04:00
|
|
|
return queue.add(obj.payload, jobArgs)
|
2018-01-25 09:05:18 -05:00
|
|
|
}
|
|
|
|
|
2018-07-10 11:02:20 -04:00
|
|
|
async listForApi (state: JobState, start: number, count: number, asc?: boolean): Promise<Bull.Job[]> {
|
|
|
|
let results: Bull.Job[] = []
|
2018-01-25 09:05:18 -05:00
|
|
|
|
2018-07-10 11:02:20 -04:00
|
|
|
// TODO: optimize
|
|
|
|
for (const jobType of jobTypes) {
|
|
|
|
const queue = this.queues[ jobType ]
|
|
|
|
if (queue === undefined) {
|
|
|
|
logger.error('Unknown queue %s to list jobs.', jobType)
|
|
|
|
continue
|
|
|
|
}
|
2018-02-27 10:57:53 -05:00
|
|
|
|
2018-07-10 11:02:20 -04:00
|
|
|
// FIXME: Bull queue typings does not have getJobs method
|
|
|
|
const jobs = await (queue as any).getJobs(state, 0, start + count, asc)
|
|
|
|
results = results.concat(jobs)
|
|
|
|
}
|
2018-01-25 09:05:18 -05:00
|
|
|
|
2018-07-10 11:02:20 -04:00
|
|
|
results.sort((j1: any, j2: any) => {
|
|
|
|
if (j1.timestamp < j2.timestamp) return -1
|
|
|
|
else if (j1.timestamp === j2.timestamp) return 0
|
2018-01-25 09:05:18 -05:00
|
|
|
|
2018-07-10 11:02:20 -04:00
|
|
|
return 1
|
2018-01-25 09:05:18 -05:00
|
|
|
})
|
|
|
|
|
2018-07-10 11:02:20 -04:00
|
|
|
if (asc === false) results.reverse()
|
2018-01-25 09:05:18 -05:00
|
|
|
|
2018-07-10 11:02:20 -04:00
|
|
|
return results.slice(start, start + count)
|
2018-01-25 09:05:18 -05:00
|
|
|
}
|
|
|
|
|
2018-07-10 11:02:20 -04:00
|
|
|
async count (state: JobState): Promise<number> {
|
|
|
|
let total = 0
|
2018-02-12 05:25:09 -05:00
|
|
|
|
2018-07-10 11:02:20 -04:00
|
|
|
for (const type of jobTypes) {
|
|
|
|
const queue = this.queues[ type ]
|
|
|
|
if (queue === undefined) {
|
|
|
|
logger.error('Unknown queue %s to count jobs.', type)
|
|
|
|
continue
|
|
|
|
}
|
2018-02-12 05:25:09 -05:00
|
|
|
|
2018-07-10 11:02:20 -04:00
|
|
|
const counts = await queue.getJobCounts()
|
2018-02-12 05:25:09 -05:00
|
|
|
|
2018-07-10 11:02:20 -04:00
|
|
|
total += counts[ state ]
|
|
|
|
}
|
2018-02-12 05:25:09 -05:00
|
|
|
|
2018-07-10 11:02:20 -04:00
|
|
|
return total
|
2018-02-12 05:25:09 -05:00
|
|
|
}
|
|
|
|
|
2018-12-20 08:31:11 -05:00
|
|
|
async removeOldJobs () {
|
2018-07-10 11:02:20 -04:00
|
|
|
for (const key of Object.keys(this.queues)) {
|
|
|
|
const queue = this.queues[key]
|
2018-12-20 08:31:11 -05:00
|
|
|
await queue.clean(JOB_COMPLETED_LIFETIME, 'completed')
|
2018-07-10 11:02:20 -04:00
|
|
|
}
|
2018-02-27 10:57:53 -05:00
|
|
|
}
|
|
|
|
|
2018-08-29 10:26:25 -04:00
|
|
|
private addRepeatableJobs () {
|
|
|
|
this.queues['videos-views'].add({}, {
|
|
|
|
repeat: REPEAT_JOBS['videos-views']
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2018-01-25 09:05:18 -05:00
|
|
|
static get Instance () {
|
|
|
|
return this.instance || (this.instance = new this())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
|
|
|
JobQueue
|
|
|
|
}
|