2021-08-27 08:32:44 -04:00
|
|
|
import Bull, { Job, JobOptions, Queue } from 'bull'
|
2020-12-14 06:00:35 -05:00
|
|
|
import { jobStates } from '@server/helpers/custom-validators/jobs'
|
2021-02-08 04:51:10 -05:00
|
|
|
import { CONFIG } from '@server/initializers/config'
|
2020-12-14 06:00:35 -05:00
|
|
|
import { processVideoRedundancy } from '@server/lib/job-queue/handlers/video-redundancy'
|
2020-04-23 03:32:53 -04:00
|
|
|
import {
|
|
|
|
ActivitypubFollowPayload,
|
|
|
|
ActivitypubHttpBroadcastPayload,
|
2020-04-23 05:36:50 -04:00
|
|
|
ActivitypubHttpFetcherPayload,
|
|
|
|
ActivitypubHttpUnicastPayload,
|
2021-02-26 08:22:25 -05:00
|
|
|
ActorKeysPayload,
|
2021-10-25 11:42:20 -04:00
|
|
|
DeleteResumableUploadMetaFilePayload,
|
2020-04-23 05:36:50 -04:00
|
|
|
EmailPayload,
|
2020-04-23 03:32:53 -04:00
|
|
|
JobState,
|
2020-04-23 05:36:50 -04:00
|
|
|
JobType,
|
2022-03-16 10:34:21 -04:00
|
|
|
ManageVideoTorrentPayload,
|
2021-08-17 02:26:20 -04:00
|
|
|
MoveObjectStoragePayload,
|
2020-04-23 05:36:50 -04:00
|
|
|
RefreshPayload,
|
|
|
|
VideoFileImportPayload,
|
|
|
|
VideoImportPayload,
|
2020-09-25 04:04:21 -04:00
|
|
|
VideoLiveEndingPayload,
|
2020-04-23 05:36:50 -04:00
|
|
|
VideoRedundancyPayload,
|
2022-03-22 11:58:49 -04:00
|
|
|
VideoStudioEditionPayload,
|
2020-04-23 05:36:50 -04:00
|
|
|
VideoTranscodingPayload
|
2020-04-23 03:32:53 -04:00
|
|
|
} from '../../../shared/models'
|
2018-01-25 09:05:18 -05:00
|
|
|
import { logger } from '../../helpers/logger'
|
2019-04-11 08:26:41 -04:00
|
|
|
import { JOB_ATTEMPTS, JOB_COMPLETED_LIFETIME, JOB_CONCURRENCY, JOB_TTL, REPEAT_JOBS, WEBSERVER } from '../../initializers/constants'
|
2021-02-26 10:26:27 -05:00
|
|
|
import { processActivityPubCleaner } from './handlers/activitypub-cleaner'
|
2020-12-14 06:00:35 -05:00
|
|
|
import { processActivityPubFollow } from './handlers/activitypub-follow'
|
2020-04-23 03:32:53 -04:00
|
|
|
import { processActivityPubHttpBroadcast } from './handlers/activitypub-http-broadcast'
|
|
|
|
import { processActivityPubHttpFetcher } from './handlers/activitypub-http-fetcher'
|
|
|
|
import { processActivityPubHttpUnicast } from './handlers/activitypub-http-unicast'
|
2020-04-23 05:36:50 -04:00
|
|
|
import { refreshAPObject } from './handlers/activitypub-refresher'
|
2021-02-26 08:22:25 -05:00
|
|
|
import { processActorKeys } from './handlers/actor-keys'
|
2020-12-14 06:00:35 -05:00
|
|
|
import { processEmail } from './handlers/email'
|
2022-03-16 10:34:21 -04:00
|
|
|
import { processManageVideoTorrent } from './handlers/manage-video-torrent'
|
2022-06-16 08:29:53 -04:00
|
|
|
import { onMoveToObjectStorageFailure, processMoveToObjectStorage } from './handlers/move-to-object-storage'
|
2020-04-23 05:36:50 -04:00
|
|
|
import { processVideoFileImport } from './handlers/video-file-import'
|
2020-12-14 06:00:35 -05:00
|
|
|
import { processVideoImport } from './handlers/video-import'
|
2020-09-25 04:04:21 -04:00
|
|
|
import { processVideoLiveEnding } from './handlers/video-live-ending'
|
2022-03-22 11:58:49 -04:00
|
|
|
import { processVideoStudioEdition } from './handlers/video-studio-edition'
|
2020-12-14 06:00:35 -05:00
|
|
|
import { processVideoTranscoding } from './handlers/video-transcoding'
|
2021-11-09 04:11:20 -05:00
|
|
|
import { processVideosViewsStats } from './handlers/video-views-stats'
|
2018-01-25 09:05:18 -05:00
|
|
|
|
|
|
|
type CreateJobArgument =
|
|
|
|
{ type: 'activitypub-http-broadcast', payload: ActivitypubHttpBroadcastPayload } |
|
2022-06-17 08:08:13 -04:00
|
|
|
{ type: 'activitypub-http-broadcast-parallel', payload: ActivitypubHttpBroadcastPayload } |
|
2018-01-25 09:05:18 -05:00
|
|
|
{ type: 'activitypub-http-unicast', payload: ActivitypubHttpUnicastPayload } |
|
|
|
|
{ type: 'activitypub-http-fetcher', payload: ActivitypubHttpFetcherPayload } |
|
2021-02-26 10:26:27 -05:00
|
|
|
{ type: 'activitypub-http-cleaner', payload: {} } |
|
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 } |
|
2021-11-09 04:11:20 -05:00
|
|
|
{ type: 'videos-views-stats', payload: {} } |
|
2020-09-25 04:04:21 -04:00
|
|
|
{ type: 'video-live-ending', payload: VideoLiveEndingPayload } |
|
2021-02-26 08:22:25 -05:00
|
|
|
{ type: 'actor-keys', payload: ActorKeysPayload } |
|
2021-08-17 02:26:20 -04:00
|
|
|
{ type: 'video-redundancy', payload: VideoRedundancyPayload } |
|
2021-10-25 11:42:20 -04:00
|
|
|
{ type: 'delete-resumable-upload-meta-file', payload: DeleteResumableUploadMetaFilePayload } |
|
2022-03-22 11:58:49 -04:00
|
|
|
{ type: 'video-studio-edition', payload: VideoStudioEditionPayload } |
|
2022-03-16 10:34:21 -04:00
|
|
|
{ type: 'manage-video-torrent', payload: ManageVideoTorrentPayload } |
|
2021-08-17 02:26:20 -04:00
|
|
|
{ type: 'move-to-object-storage', payload: MoveObjectStoragePayload }
|
2018-01-25 09:05:18 -05:00
|
|
|
|
2021-08-17 02:26:20 -04:00
|
|
|
export type CreateJobOptions = {
|
2020-09-25 04:04:21 -04:00
|
|
|
delay?: number
|
2021-01-21 10:57:21 -05:00
|
|
|
priority?: number
|
2020-09-25 04:04:21 -04:00
|
|
|
}
|
|
|
|
|
2021-08-27 08:32:44 -04:00
|
|
|
const handlers: { [id in JobType]: (job: Job) => Promise<any> } = {
|
2018-01-25 09:05:18 -05:00
|
|
|
'activitypub-http-broadcast': processActivityPubHttpBroadcast,
|
2022-06-17 08:08:13 -04:00
|
|
|
'activitypub-http-broadcast-parallel': processActivityPubHttpBroadcast,
|
2018-01-25 09:05:18 -05:00
|
|
|
'activitypub-http-unicast': processActivityPubHttpUnicast,
|
|
|
|
'activitypub-http-fetcher': processActivityPubHttpFetcher,
|
2021-02-26 10:26:27 -05:00
|
|
|
'activitypub-cleaner': processActivityPubCleaner,
|
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,
|
2018-08-02 09:34:09 -04:00
|
|
|
'email': processEmail,
|
2018-08-29 10:26:25 -04:00
|
|
|
'video-import': processVideoImport,
|
2021-11-09 04:11:20 -05:00
|
|
|
'videos-views-stats': processVideosViewsStats,
|
2020-01-10 04:11:28 -05:00
|
|
|
'activitypub-refresher': refreshAPObject,
|
2020-09-25 04:04:21 -04:00
|
|
|
'video-live-ending': processVideoLiveEnding,
|
2021-02-26 08:22:25 -05:00
|
|
|
'actor-keys': processActorKeys,
|
2021-08-17 02:26:20 -04:00
|
|
|
'video-redundancy': processVideoRedundancy,
|
2022-02-11 04:51:33 -05:00
|
|
|
'move-to-object-storage': processMoveToObjectStorage,
|
2022-03-16 10:34:21 -04:00
|
|
|
'manage-video-torrent': processManageVideoTorrent,
|
2022-03-22 11:58:49 -04:00
|
|
|
'video-studio-edition': processVideoStudioEdition
|
2018-01-25 09:05:18 -05:00
|
|
|
}
|
|
|
|
|
2022-06-16 08:29:53 -04:00
|
|
|
const errorHandlers: { [id in JobType]?: (job: Job, err: any) => Promise<any> } = {
|
|
|
|
'move-to-object-storage': onMoveToObjectStorageFailure
|
|
|
|
}
|
|
|
|
|
2018-07-10 11:02:20 -04:00
|
|
|
const jobTypes: JobType[] = [
|
|
|
|
'activitypub-follow',
|
2018-05-09 03:08:22 -04:00
|
|
|
'activitypub-http-broadcast',
|
2022-06-17 08:08:13 -04:00
|
|
|
'activitypub-http-broadcast-parallel',
|
2018-05-09 03:08:22 -04:00
|
|
|
'activitypub-http-fetcher',
|
2018-07-10 11:02:20 -04:00
|
|
|
'activitypub-http-unicast',
|
2021-02-26 10:26:27 -05:00
|
|
|
'activitypub-cleaner',
|
2018-07-10 11:02:20 -04:00
|
|
|
'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',
|
2021-11-09 04:11:20 -05:00
|
|
|
'videos-views-stats',
|
2020-01-10 04:11:28 -05:00
|
|
|
'activitypub-refresher',
|
2020-09-25 04:04:21 -04:00
|
|
|
'video-redundancy',
|
2021-02-26 08:22:25 -05:00
|
|
|
'actor-keys',
|
2021-08-17 02:26:20 -04:00
|
|
|
'video-live-ending',
|
2022-02-11 04:51:33 -05:00
|
|
|
'move-to-object-storage',
|
2022-03-16 10:34:21 -04:00
|
|
|
'manage-video-torrent',
|
2022-03-22 11:58:49 -04:00
|
|
|
'video-studio-edition'
|
2018-05-09 03:08:22 -04:00
|
|
|
]
|
|
|
|
|
2022-05-18 06:01:02 -04:00
|
|
|
const silentFailure = new Set<JobType>([ 'activitypub-http-unicast' ])
|
|
|
|
|
2018-01-25 09:05:18 -05:00
|
|
|
class JobQueue {
|
|
|
|
|
|
|
|
private static instance: JobQueue
|
|
|
|
|
2021-08-27 08:32:44 -04:00
|
|
|
private queues: { [id in JobType]?: 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
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
private constructor () {
|
|
|
|
}
|
2018-01-25 09:05:18 -05:00
|
|
|
|
2021-11-09 05:05:35 -05:00
|
|
|
init (produceOnly = false) {
|
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
|
2022-01-14 09:06:33 -05:00
|
|
|
|
|
|
|
const queueOptions: Bull.QueueOptions = {
|
2018-02-27 10:57:53 -05:00
|
|
|
prefix: this.jobRedisPrefix,
|
2022-01-14 09:06:33 -05:00
|
|
|
redis: {
|
|
|
|
password: CONFIG.REDIS.AUTH,
|
|
|
|
db: CONFIG.REDIS.DB,
|
|
|
|
host: CONFIG.REDIS.HOSTNAME,
|
|
|
|
port: CONFIG.REDIS.PORT,
|
|
|
|
path: CONFIG.REDIS.SOCKET
|
|
|
|
},
|
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
|
|
|
|
2021-02-08 04:51:10 -05:00
|
|
|
for (const handlerName of (Object.keys(handlers) as JobType[])) {
|
2018-07-10 11:02:20 -04:00
|
|
|
const queue = new Bull(handlerName, queueOptions)
|
2021-11-09 05:05:35 -05:00
|
|
|
|
|
|
|
if (produceOnly) {
|
|
|
|
queue.pause(true)
|
|
|
|
.catch(err => logger.error('Cannot pause queue %s in produced only job queue', handlerName, { err }))
|
|
|
|
}
|
|
|
|
|
2018-07-10 11:02:20 -04:00
|
|
|
const handler = handlers[handlerName]
|
2018-01-25 09:05:18 -05:00
|
|
|
|
2021-02-08 04:51:10 -05:00
|
|
|
queue.process(this.getJobConcurrency(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) => {
|
2022-05-18 06:01:02 -04:00
|
|
|
const logLevel = silentFailure.has(handlerName)
|
|
|
|
? 'debug'
|
|
|
|
: 'error'
|
|
|
|
|
|
|
|
logger.log(logLevel, 'Cannot execute job %d in queue %s.', job.id, handlerName, { payload: job.data, err })
|
2022-06-16 08:29:53 -04:00
|
|
|
|
|
|
|
if (errorHandlers[job.name]) {
|
|
|
|
errorHandlers[job.name](job, err)
|
|
|
|
.catch(err => logger.error('Cannot run error handler for job failure %d in queue %s.', job.id, handlerName, { err }))
|
|
|
|
}
|
2018-08-03 03:27:30 -04:00
|
|
|
})
|
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()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-19 08:23:00 -05:00
|
|
|
async pause () {
|
|
|
|
for (const handler of Object.keys(this.queues)) {
|
|
|
|
await this.queues[handler].pause(true)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
async resume () {
|
|
|
|
for (const handler of Object.keys(this.queues)) {
|
|
|
|
await this.queues[handler].resume(true)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-25 04:04:21 -04:00
|
|
|
createJob (obj: CreateJobArgument, options: CreateJobOptions = {}): void {
|
|
|
|
this.createJobWithPromise(obj, options)
|
2020-04-23 05:36:50 -04:00
|
|
|
.catch(err => logger.error('Cannot create job.', { err, obj }))
|
2020-01-31 10:56:52 -05:00
|
|
|
}
|
|
|
|
|
2020-09-25 04:04:21 -04:00
|
|
|
createJobWithPromise (obj: CreateJobArgument, options: CreateJobOptions = {}) {
|
2022-03-16 10:34:21 -04:00
|
|
|
const queue: Queue = this.queues[obj.type]
|
2018-07-10 11:02:20 -04:00
|
|
|
if (queue === undefined) {
|
|
|
|
logger.error('Unknown queue %s: cannot create job.', obj.type)
|
2020-01-31 10:56:52 -05:00
|
|
|
return
|
2018-07-10 11:02:20 -04:00
|
|
|
}
|
2018-01-25 09:05:18 -05:00
|
|
|
|
2021-08-27 08:32:44 -04:00
|
|
|
const jobArgs: JobOptions = {
|
2018-07-10 11:02:20 -04:00
|
|
|
backoff: { delay: 60 * 1000, type: 'exponential' },
|
2018-08-03 04:19:51 -04:00
|
|
|
attempts: JOB_ATTEMPTS[obj.type],
|
2020-09-25 04:04:21 -04:00
|
|
|
timeout: JOB_TTL[obj.type],
|
2021-01-21 10:57:21 -05:00
|
|
|
priority: options.priority,
|
2020-09-25 04:04:21 -04:00
|
|
|
delay: options.delay
|
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
|
|
|
}
|
|
|
|
|
2019-12-04 08:49:59 -05:00
|
|
|
async listForApi (options: {
|
2020-12-14 06:00:35 -05:00
|
|
|
state?: JobState
|
2020-01-31 10:56:52 -05:00
|
|
|
start: number
|
|
|
|
count: number
|
|
|
|
asc?: boolean
|
2019-12-04 08:49:59 -05:00
|
|
|
jobType: JobType
|
2021-08-27 08:32:44 -04:00
|
|
|
}): Promise<Job[]> {
|
2020-12-14 06:00:35 -05:00
|
|
|
const { state, start, count, asc, jobType } = options
|
|
|
|
|
|
|
|
const states = state ? [ state ] : jobStates
|
2021-08-27 08:32:44 -04:00
|
|
|
let results: Job[] = []
|
2018-01-25 09:05:18 -05:00
|
|
|
|
2019-12-04 08:49:59 -05:00
|
|
|
const filteredJobTypes = this.filterJobTypes(jobType)
|
|
|
|
|
|
|
|
for (const jobType of filteredJobTypes) {
|
2020-01-31 10:56:52 -05:00
|
|
|
const queue = this.queues[jobType]
|
2018-07-10 11:02:20 -04:00
|
|
|
if (queue === undefined) {
|
|
|
|
logger.error('Unknown queue %s to list jobs.', jobType)
|
|
|
|
continue
|
|
|
|
}
|
2018-02-27 10:57:53 -05:00
|
|
|
|
2020-12-14 06:00:35 -05:00
|
|
|
const jobs = await queue.getJobs(states, 0, start + count, asc)
|
2018-07-10 11:02:20 -04:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2020-12-14 06:00:35 -05:00
|
|
|
async count (state: JobState, jobType?: JobType): Promise<number> {
|
|
|
|
const states = state ? [ state ] : jobStates
|
2018-07-10 11:02:20 -04:00
|
|
|
let total = 0
|
2018-02-12 05:25:09 -05:00
|
|
|
|
2019-12-04 08:49:59 -05:00
|
|
|
const filteredJobTypes = this.filterJobTypes(jobType)
|
|
|
|
|
|
|
|
for (const type of filteredJobTypes) {
|
2020-01-31 10:56:52 -05:00
|
|
|
const queue = this.queues[type]
|
2018-07-10 11:02:20 -04:00
|
|
|
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
|
|
|
|
2020-12-13 13:27:25 -05:00
|
|
|
for (const s of states) {
|
|
|
|
total += counts[s]
|
|
|
|
}
|
2018-07-10 11:02:20 -04:00
|
|
|
}
|
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 () {
|
2021-11-09 04:11:20 -05:00
|
|
|
this.queues['videos-views-stats'].add({}, {
|
|
|
|
repeat: REPEAT_JOBS['videos-views-stats']
|
2020-01-31 10:56:52 -05:00
|
|
|
}).catch(err => logger.error('Cannot add repeatable job.', { err }))
|
2021-02-26 10:26:27 -05:00
|
|
|
|
|
|
|
if (CONFIG.FEDERATION.VIDEOS.CLEANUP_REMOTE_INTERACTIONS) {
|
|
|
|
this.queues['activitypub-cleaner'].add({}, {
|
|
|
|
repeat: REPEAT_JOBS['activitypub-cleaner']
|
|
|
|
}).catch(err => logger.error('Cannot add repeatable job.', { err }))
|
|
|
|
}
|
2018-08-29 10:26:25 -04:00
|
|
|
}
|
|
|
|
|
2019-12-04 08:49:59 -05:00
|
|
|
private filterJobTypes (jobType?: JobType) {
|
|
|
|
if (!jobType) return jobTypes
|
|
|
|
|
|
|
|
return jobTypes.filter(t => t === jobType)
|
|
|
|
}
|
|
|
|
|
2021-02-08 04:51:10 -05:00
|
|
|
private getJobConcurrency (jobType: JobType) {
|
|
|
|
if (jobType === 'video-transcoding') return CONFIG.TRANSCODING.CONCURRENCY
|
|
|
|
if (jobType === 'video-import') return CONFIG.IMPORT.VIDEOS.CONCURRENCY
|
|
|
|
|
|
|
|
return JOB_CONCURRENCY[jobType]
|
|
|
|
}
|
|
|
|
|
2018-01-25 09:05:18 -05:00
|
|
|
static get Instance () {
|
|
|
|
return this.instance || (this.instance = new this())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
2019-12-04 08:49:59 -05:00
|
|
|
jobTypes,
|
2018-01-25 09:05:18 -05:00
|
|
|
JobQueue
|
|
|
|
}
|