123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190 |
- import * as Bull from 'bull'
- import { JobState, JobType } from '../../../shared/models'
- import { logger } from '../../helpers/logger'
- import { Redis } from '../redis'
- import { CONFIG, JOB_ATTEMPTS, JOB_COMPLETED_LIFETIME, JOB_CONCURRENCY, JOB_TTL, REPEAT_JOBS } from '../../initializers'
- import { ActivitypubHttpBroadcastPayload, processActivityPubHttpBroadcast } from './handlers/activitypub-http-broadcast'
- import { ActivitypubHttpFetcherPayload, processActivityPubHttpFetcher } from './handlers/activitypub-http-fetcher'
- import { ActivitypubHttpUnicastPayload, processActivityPubHttpUnicast } from './handlers/activitypub-http-unicast'
- import { EmailPayload, processEmail } from './handlers/email'
- import { processVideoFile, processVideoFileImport, VideoFileImportPayload, VideoFilePayload } from './handlers/video-file'
- import { ActivitypubFollowPayload, processActivityPubFollow } from './handlers/activitypub-follow'
- import { processVideoImport, VideoImportPayload } from './handlers/video-import'
- import { processVideosViews } from './handlers/video-views'
- import { refreshAPObject, RefreshPayload } from './handlers/activitypub-refresher'
- type CreateJobArgument =
- { type: 'activitypub-http-broadcast', payload: ActivitypubHttpBroadcastPayload } |
- { type: 'activitypub-http-unicast', payload: ActivitypubHttpUnicastPayload } |
- { type: 'activitypub-http-fetcher', payload: ActivitypubHttpFetcherPayload } |
- { type: 'activitypub-follow', payload: ActivitypubFollowPayload } |
- { type: 'video-file-import', payload: VideoFileImportPayload } |
- { type: 'video-file', payload: VideoFilePayload } |
- { type: 'email', payload: EmailPayload } |
- { type: 'video-import', payload: VideoImportPayload } |
- { type: 'activitypub-refresher', payload: RefreshPayload } |
- { type: 'videos-views', payload: {} }
- const handlers: { [ id in JobType ]: (job: Bull.Job) => Promise<any>} = {
- 'activitypub-http-broadcast': processActivityPubHttpBroadcast,
- 'activitypub-http-unicast': processActivityPubHttpUnicast,
- 'activitypub-http-fetcher': processActivityPubHttpFetcher,
- 'activitypub-follow': processActivityPubFollow,
- 'video-file-import': processVideoFileImport,
- 'video-file': processVideoFile,
- 'email': processEmail,
- 'video-import': processVideoImport,
- 'videos-views': processVideosViews,
- 'activitypub-refresher': refreshAPObject
- }
- const jobTypes: JobType[] = [
- 'activitypub-follow',
- 'activitypub-http-broadcast',
- 'activitypub-http-fetcher',
- 'activitypub-http-unicast',
- 'email',
- 'video-file',
- 'video-file-import',
- 'video-import',
- 'videos-views',
- 'activitypub-refresher'
- ]
- class JobQueue {
- private static instance: JobQueue
- private queues: { [ id in JobType ]?: Bull.Queue } = {}
- private initialized = false
- private jobRedisPrefix: string
- private constructor () {}
- async init () {
- // Already initialized
- if (this.initialized === true) return
- this.initialized = true
- this.jobRedisPrefix = 'bull-' + CONFIG.WEBSERVER.HOST
- const queueOptions = {
- prefix: this.jobRedisPrefix,
- redis: Redis.getRedisClient(),
- settings: {
- maxStalledCount: 10 // transcoding could be long, so jobs can often be interrupted by restarts
- }
- }
- for (const handlerName of Object.keys(handlers)) {
- const queue = new Bull(handlerName, queueOptions)
- const handler = handlers[handlerName]
- queue.process(JOB_CONCURRENCY[handlerName], handler)
- .catch(err => logger.error('Error in job queue processor %s.', handlerName, { err }))
- queue.on('failed', (job, err) => {
- logger.error('Cannot execute job %d in queue %s.', job.id, handlerName, { payload: job.data, err })
- })
- queue.on('error', err => {
- logger.error('Error in job queue %s.', handlerName, { err })
- })
- this.queues[handlerName] = queue
- }
- this.addRepeatableJobs()
- }
- terminate () {
- for (const queueName of Object.keys(this.queues)) {
- const queue = this.queues[queueName]
- queue.close()
- }
- }
- createJob (obj: CreateJobArgument) {
- const queue = this.queues[obj.type]
- if (queue === undefined) {
- logger.error('Unknown queue %s: cannot create job.', obj.type)
- throw Error('Unknown queue, cannot create job')
- }
- const jobArgs: Bull.JobOptions = {
- backoff: { delay: 60 * 1000, type: 'exponential' },
- attempts: JOB_ATTEMPTS[obj.type],
- timeout: JOB_TTL[obj.type]
- }
- return queue.add(obj.payload, jobArgs)
- }
- async listForApi (state: JobState, start: number, count: number, asc?: boolean): Promise<Bull.Job[]> {
- let results: Bull.Job[] = []
- // 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
- }
- // 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)
- }
- results.sort((j1: any, j2: any) => {
- if (j1.timestamp < j2.timestamp) return -1
- else if (j1.timestamp === j2.timestamp) return 0
- return 1
- })
- if (asc === false) results.reverse()
- return results.slice(start, start + count)
- }
- async count (state: JobState): Promise<number> {
- let total = 0
- for (const type of jobTypes) {
- const queue = this.queues[ type ]
- if (queue === undefined) {
- logger.error('Unknown queue %s to count jobs.', type)
- continue
- }
- const counts = await queue.getJobCounts()
- total += counts[ state ]
- }
- return total
- }
- removeOldJobs () {
- for (const key of Object.keys(this.queues)) {
- const queue = this.queues[key]
- queue.clean(JOB_COMPLETED_LIFETIME, 'completed')
- }
- }
- private addRepeatableJobs () {
- this.queues['videos-views'].add({}, {
- repeat: REPEAT_JOBS['videos-views']
- })
- }
- static get Instance () {
- return this.instance || (this.instance = new this())
- }
- }
- // ---------------------------------------------------------------------------
- export {
- JobQueue
- }
|