chore(server): reschedule doc merging jobs (#11318)

This commit is contained in:
forehalo
2025-04-01 10:57:54 +00:00
parent d38458b733
commit 6276732efc
8 changed files with 90 additions and 50 deletions
@@ -1,6 +1,8 @@
import { getQueueToken } from '@nestjs/bullmq';
import { Injectable } from '@nestjs/common';
import { TestingModule } from '@nestjs/testing';
import test from 'ava';
import { Queue as Bullmq } from 'bullmq';
import { CLS_ID, ClsServiceManager } from 'nestjs-cls';
import Sinon from 'sinon';
@@ -15,6 +17,7 @@ import { JobHandlerScanner } from '../scanner';
let module: TestingModule;
let queue: JobQueue;
let executor: JobExecutor;
let bullmq: Bullmq;
declare global {
interface Jobs {
@@ -62,9 +65,6 @@ test.before(async () => {
stalledInterval: 100,
},
},
queue: {
defaultJobOptions: { delay: 1000 },
},
},
}),
JobModule.forRoot(),
@@ -78,13 +78,12 @@ test.before(async () => {
queue = module.get(JobQueue);
executor = module.get(JobExecutor);
bullmq = module.get(getQueueToken('nightly'), { strict: false });
});
test.afterEach(async () => {
// @ts-expect-error private api
const inner = queue.getQueue('nightly');
await inner.obliterate({ force: true });
await inner.resume();
test.beforeEach(async () => {
await bullmq.obliterate({ force: true });
await bullmq.resume();
});
test.after.always(async () => {
@@ -106,25 +105,20 @@ test('should register job handler', async t => {
test('should add job to queue', async t => {
const job = await queue.add('nightly.__test__job', { name: 'test' });
// @ts-expect-error private api
const innerQueue = queue.getQueue('nightly');
const queuedJob = await innerQueue.getJob(job.id!);
const queuedJob = await queue.get(job.id!, job.name as JobName);
t.is(queuedJob.name, job.name);
t.is(queuedJob!.name, job.name);
});
test('should remove job from queue', async t => {
const job = await queue.add('nightly.__test__job', { name: 'test' });
// @ts-expect-error private api
const innerQueue = queue.getQueue('nightly');
const data = await queue.remove(job.id!, job.name as JobName);
t.deepEqual(data, { name: 'test' });
const nullData = await queue.remove(job.id!, job.name as JobName);
const nullJob = await innerQueue.getJob(job.id!);
const nullJob = await bullmq.getJob(job.id!);
t.is(nullData, undefined);
t.is(nullJob, undefined);
@@ -137,7 +131,6 @@ test('should start workers', async t => {
const worker = executor.workers.get('nightly')!;
t.truthy(worker);
t.true(worker.isRunning());
});
test('should dispatch job handler', async t => {
@@ -65,5 +65,7 @@ export function getJobHandlerMetadata(target: any): JobName[] {
}
export enum JOB_SIGNAL {
RETRY = 'retry',
Retry = 'retry',
Repeat = 'repeat',
Done = 'done',
}
@@ -1,5 +1,7 @@
import { getQueueToken } from '@nestjs/bullmq';
import { Injectable, Logger, OnModuleDestroy } from '@nestjs/common';
import { Worker } from 'bullmq';
import { ModuleRef } from '@nestjs/core';
import { Job, Queue as Bullmq, Worker } from 'bullmq';
import { difference, merge } from 'lodash-es';
import { CLS_ID, ClsServiceManager } from 'nestjs-cls';
@@ -19,7 +21,8 @@ export class JobExecutor implements OnModuleDestroy {
constructor(
private readonly config: Config,
private readonly redis: QueueRedis,
private readonly scanner: JobHandlerScanner
private readonly scanner: JobHandlerScanner,
private readonly ref: ModuleRef
) {}
@OnEvent('config.init')
@@ -49,7 +52,7 @@ export class JobExecutor implements OnModuleDestroy {
await this.stopWorkers();
}
async run(name: JobName, payload: any) {
async run(name: JobName, payload: any): Promise<JOB_SIGNAL | undefined> {
const ns = namespace(name);
const handler = this.scanner.getHandler(name);
@@ -70,13 +73,9 @@ export class JobExecutor implements OnModuleDestroy {
const signature = `[${name}] (${handler.name})`;
try {
this.logger.debug(`Job started: ${signature}`);
const result = await handler.fn(payload);
if (result === JOB_SIGNAL.RETRY) {
throw new Error(`Manually job retry`);
}
const ret = await handler.fn(payload);
this.logger.debug(`Job finished: ${signature}`);
return ret;
} catch (e) {
this.logger.error(`Job failed: ${signature}`, e);
throw e;
@@ -94,7 +93,7 @@ export class JobExecutor implements OnModuleDestroy {
const activeJobs = metrics.queue.counter('active_jobs');
activeJobs.add(1, { queue: ns });
try {
await fn();
return await fn();
} finally {
activeJobs.add(-1, { queue: ns });
}
@@ -117,7 +116,7 @@ export class JobExecutor implements OnModuleDestroy {
const worker = new Worker(
queue,
async job => {
await this.run(job.name as JobName, job.data);
return await this.run(job.name as JobName, job.data);
},
merge(
{},
@@ -135,6 +134,12 @@ export class JobExecutor implements OnModuleDestroy {
this.logger.error(`Queue Worker [${queue}] error`, error);
});
worker.on('completed', (job, result) => {
this.handleJobReturn(job, result).catch(() => {
/* noop */
});
});
this.logger.log(
`Queue Worker [${queue}] started; concurrency=${concurrency};`
);
@@ -143,6 +148,16 @@ export class JobExecutor implements OnModuleDestroy {
}
}
async handleJobReturn(job: Job, result: JOB_SIGNAL) {
if (result === JOB_SIGNAL.Repeat || result === JOB_SIGNAL.Retry) {
try {
await this.getQueue(job.name).add(job.name, job.data, job.opts);
} catch (e) {
this.logger.error(`Failed to add job [${job.name}]`, e);
}
}
}
private async stopWorkers() {
await Promise.all(
Array.from(this.workers.values()).map(async worker => {
@@ -150,4 +165,8 @@ export class JobExecutor implements OnModuleDestroy {
})
);
}
private getQueue(ns: string): Bullmq {
return this.ref.get(getQueueToken(ns), { strict: false });
}
}
@@ -37,6 +37,12 @@ export class JobQueue {
return undefined;
}
async get<T extends JobName>(jobId: string, jobName: T) {
const ns = namespace(jobName);
const queue = this.getQueue(ns);
return (await queue.getJob(jobId)) as Job<Jobs[T]> | undefined;
}
private getQueue(ns: string): Queue {
return this.moduleRef.get(getQueueToken(ns), { strict: false });
}