Drain jobs cleanly on shutdown

This commit is contained in:
Alvaro 2023-02-24 12:03:17 -07:00 committed by GitHub
parent a83a85d557
commit b5849f872a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
14 changed files with 301 additions and 30 deletions

View file

@ -1,20 +1,26 @@
// Copyright 2021 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import PQueue from 'p-queue';
import * as Errors from '../types/errors';
import * as log from '../logging/log';
type EntryType = Readonly<{
value: number;
callback(): void;
callback(): Promise<void>;
}>;
let startupProcessingQueue: StartupQueue | undefined;
export class StartupQueue {
private readonly map = new Map<string, EntryType>();
private readonly running: PQueue = new PQueue({
// mostly io-bound work that is not very parallelizable
// small number should be sufficient
concurrency: 5,
});
public add(id: string, value: number, f: () => void): void {
public add(id: string, value: number, f: () => Promise<void>): void {
const existing = this.map.get(id);
if (existing && existing.value >= value) {
return;
@ -30,26 +36,36 @@ export class StartupQueue {
this.map.clear();
for (const { callback } of values) {
try {
callback();
} catch (error) {
log.error(
'StartupQueue: Failed to process item due to error',
Errors.toLogFormat(error)
);
}
void this.running.add(async () => {
try {
return callback();
} catch (error) {
log.error(
'StartupQueue: Failed to process item due to error',
Errors.toLogFormat(error)
);
throw error;
}
});
}
}
private shutdown(): Promise<void> {
log.info(
`StartupQueue: Waiting for ${this.running.pending} tasks to drain`
);
return this.running.onIdle();
}
static initialize(): void {
startupProcessingQueue = new StartupQueue();
}
static isReady(): boolean {
static isAvailable(): boolean {
return Boolean(startupProcessingQueue);
}
static add(id: string, value: number, f: () => void): void {
static add(id: string, value: number, f: () => Promise<void>): void {
startupProcessingQueue?.add(id, value, f);
}
@ -57,4 +73,8 @@ export class StartupQueue {
startupProcessingQueue?.flush();
startupProcessingQueue = undefined;
}
static async shutdown(): Promise<void> {
await startupProcessingQueue?.shutdown();
}
}