Add job ttl
[oweals/peertube.git] / server / lib / job-queue / job-queue.ts
1 import * as Bull from 'bull'
2 import { JobState, JobType } from '../../../shared/models'
3 import { logger } from '../../helpers/logger'
4 import { Redis } from '../redis'
5 import { CONFIG, JOB_ATTEMPTS, JOB_COMPLETED_LIFETIME, JOB_CONCURRENCY, JOB_TTL } from '../../initializers'
6 import { ActivitypubHttpBroadcastPayload, processActivityPubHttpBroadcast } from './handlers/activitypub-http-broadcast'
7 import { ActivitypubHttpFetcherPayload, processActivityPubHttpFetcher } from './handlers/activitypub-http-fetcher'
8 import { ActivitypubHttpUnicastPayload, processActivityPubHttpUnicast } from './handlers/activitypub-http-unicast'
9 import { EmailPayload, processEmail } from './handlers/email'
10 import { processVideoFile, processVideoFileImport, VideoFileImportPayload, VideoFilePayload } from './handlers/video-file'
11 import { ActivitypubFollowPayload, processActivityPubFollow } from './handlers/activitypub-follow'
12 import { processVideoImport, VideoImportPayload } from './handlers/video-import'
13
14 type CreateJobArgument =
15   { type: 'activitypub-http-broadcast', payload: ActivitypubHttpBroadcastPayload } |
16   { type: 'activitypub-http-unicast', payload: ActivitypubHttpUnicastPayload } |
17   { type: 'activitypub-http-fetcher', payload: ActivitypubHttpFetcherPayload } |
18   { type: 'activitypub-follow', payload: ActivitypubFollowPayload } |
19   { type: 'video-file-import', payload: VideoFileImportPayload } |
20   { type: 'video-file', payload: VideoFilePayload } |
21   { type: 'email', payload: EmailPayload } |
22   { type: 'video-import', payload: VideoImportPayload }
23
24 const handlers: { [ id in JobType ]: (job: Bull.Job) => Promise<any>} = {
25   'activitypub-http-broadcast': processActivityPubHttpBroadcast,
26   'activitypub-http-unicast': processActivityPubHttpUnicast,
27   'activitypub-http-fetcher': processActivityPubHttpFetcher,
28   'activitypub-follow': processActivityPubFollow,
29   'video-file-import': processVideoFileImport,
30   'video-file': processVideoFile,
31   'email': processEmail,
32   'video-import': processVideoImport
33 }
34
35 const jobsWithRequestTimeout: { [ id in JobType ]?: boolean } = {
36   'activitypub-http-broadcast': true,
37   'activitypub-http-unicast': true,
38   'activitypub-http-fetcher': true,
39   'activitypub-follow': true
40 }
41
42 const jobTypes: JobType[] = [
43   'activitypub-follow',
44   'activitypub-http-broadcast',
45   'activitypub-http-fetcher',
46   'activitypub-http-unicast',
47   'email',
48   'video-file',
49   'video-file-import',
50   'video-import'
51 ]
52
53 class JobQueue {
54
55   private static instance: JobQueue
56
57   private queues: { [ id in JobType ]?: Bull.Queue } = {}
58   private initialized = false
59   private jobRedisPrefix: string
60
61   private constructor () {}
62
63   async init () {
64     // Already initialized
65     if (this.initialized === true) return
66     this.initialized = true
67
68     this.jobRedisPrefix = 'bull-' + CONFIG.WEBSERVER.HOST
69     const queueOptions = {
70       prefix: this.jobRedisPrefix,
71       redis: Redis.getRedisClient(),
72       settings: {
73         maxStalledCount: 10 // transcoding could be long, so jobs can often be interrupted by restarts
74       }
75     }
76
77     for (const handlerName of Object.keys(handlers)) {
78       const queue = new Bull(handlerName, queueOptions)
79       const handler = handlers[handlerName]
80
81       queue.process(JOB_CONCURRENCY[handlerName], handler)
82            .catch(err => logger.error('Error in job queue processor %s.', handlerName, { err }))
83
84       queue.on('failed', (job, err) => {
85         logger.error('Cannot execute job %d in queue %s.', job.id, handlerName, { payload: job.data, err })
86       })
87
88       queue.on('error', err => {
89         logger.error('Error in job queue %s.', handlerName, { err })
90         process.exit(-1)
91       })
92
93       this.queues[handlerName] = queue
94     }
95   }
96
97   terminate () {
98     for (const queueName of Object.keys(this.queues)) {
99       const queue = this.queues[queueName]
100       queue.close()
101     }
102   }
103
104   createJob (obj: CreateJobArgument) {
105     const queue = this.queues[obj.type]
106     if (queue === undefined) {
107       logger.error('Unknown queue %s: cannot create job.', obj.type)
108       throw Error('Unknown queue, cannot create job')
109     }
110
111     const jobArgs: Bull.JobOptions = {
112       backoff: { delay: 60 * 1000, type: 'exponential' },
113       attempts: JOB_ATTEMPTS[obj.type],
114       timeout: JOB_TTL[obj.type]
115     }
116
117     return queue.add(obj.payload, jobArgs)
118   }
119
120   async listForApi (state: JobState, start: number, count: number, asc?: boolean): Promise<Bull.Job[]> {
121     let results: Bull.Job[] = []
122
123     // TODO: optimize
124     for (const jobType of jobTypes) {
125       const queue = this.queues[ jobType ]
126       if (queue === undefined) {
127         logger.error('Unknown queue %s to list jobs.', jobType)
128         continue
129       }
130
131       // FIXME: Bull queue typings does not have getJobs method
132       const jobs = await (queue as any).getJobs(state, 0, start + count, asc)
133       results = results.concat(jobs)
134     }
135
136     results.sort((j1: any, j2: any) => {
137       if (j1.timestamp < j2.timestamp) return -1
138       else if (j1.timestamp === j2.timestamp) return 0
139
140       return 1
141     })
142
143     if (asc === false) results.reverse()
144
145     return results.slice(start, start + count)
146   }
147
148   async count (state: JobState): Promise<number> {
149     let total = 0
150
151     for (const type of jobTypes) {
152       const queue = this.queues[ type ]
153       if (queue === undefined) {
154         logger.error('Unknown queue %s to count jobs.', type)
155         continue
156       }
157
158       const counts = await queue.getJobCounts()
159
160       total += counts[ state ]
161     }
162
163     return total
164   }
165
166   removeOldJobs () {
167     for (const key of Object.keys(this.queues)) {
168       const queue = this.queues[key]
169       queue.clean(JOB_COMPLETED_LIFETIME, 'completed')
170     }
171   }
172
173   static get Instance () {
174     return this.instance || (this.instance = new this())
175   }
176 }
177
178 // ---------------------------------------------------------------------------
179
180 export {
181   JobQueue
182 }