mirror of
https://github.com/kokonect-link/cherrypick
synced 2024-11-23 14:46:44 +09:00
Graceful Shutdown (MisskeyIO#156)
--------- Co-authored-by: まっちゃとーにゅ <17376330+u1-liquid@users.noreply.github.com>
This commit is contained in:
parent
d5e6bc68a2
commit
1217790667
@ -84,4 +84,4 @@ COPY --chown=cherrypick:cherrypick . ./
|
||||
ENV NODE_ENV=production
|
||||
HEALTHCHECK --interval=5s --retries=20 CMD ["/bin/bash", "/cherrypick/healthcheck.sh"]
|
||||
ENTRYPOINT ["/usr/bin/tini", "--"]
|
||||
CMD ["pnpm", "run", "migrateandstart"]
|
||||
CMD ["pnpm", "run", "migrateandstart:docker"]
|
||||
|
@ -18,11 +18,13 @@
|
||||
"build": "pnpm build-pre && pnpm -r build && pnpm gulp",
|
||||
"build-storybook": "pnpm --filter frontend build-storybook",
|
||||
"start": "pnpm check:connect && cd packages/backend && node ./built/boot/index.js",
|
||||
"start:docker": "pnpm check:connect && cd packages/backend && exec node ./built/boot/index.js",
|
||||
"start:test": "cd packages/backend && cross-env NODE_ENV=test node ./built/boot/index.js",
|
||||
"init": "pnpm migrate",
|
||||
"migrate": "cd packages/backend && pnpm migrate",
|
||||
"check:connect": "cd packages/backend && pnpm check:connect",
|
||||
"migrateandstart": "pnpm migrate && pnpm start",
|
||||
"migrateandstart:docker": "pnpm migrate && exec pnpm start:docker",
|
||||
"gulp": "pnpm exec gulp build",
|
||||
"watch": "pnpm dev",
|
||||
"dev": "node ./scripts/dev.mjs",
|
||||
|
@ -29,6 +29,7 @@ const ev = new Xev();
|
||||
|
||||
//#region Events
|
||||
|
||||
if (cluster.isPrimary && !envOption.disableClustering) {
|
||||
// Listen new workers
|
||||
cluster.on('fork', worker => {
|
||||
clusterLogger.debug(`Process forked: [${worker.id}]`);
|
||||
@ -40,12 +41,27 @@ cluster.on('online', worker => {
|
||||
});
|
||||
|
||||
// Listen for dying workers
|
||||
cluster.on('exit', worker => {
|
||||
cluster.on('exit', (worker, code, signal?) => {
|
||||
// Replace the dead worker,
|
||||
// we're not sentimental
|
||||
clusterLogger.error(chalk.red(`[${worker.id}] died :(`));
|
||||
if (signal) {
|
||||
switch (signal) {
|
||||
case 'SIGINT':
|
||||
case 'SIGTERM':
|
||||
console.log(chalk.green(`[${worker.id}] exited by signal: ${signal}`));
|
||||
break;
|
||||
default:
|
||||
console.error(chalk.red(`[${worker.id}] killed by signal: ${signal}`));
|
||||
cluster.fork();
|
||||
break;
|
||||
}
|
||||
} else if (code !== 0) {
|
||||
console.error(chalk.red(`[${worker.id}] exited with error code: ${code}`));
|
||||
} else {
|
||||
console.log(chalk.green(`[${worker.id}] exited normally`));
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
// Display detail of unhandled promise rejection
|
||||
if (!envOption.quiet) {
|
||||
|
@ -250,7 +250,7 @@ export class ServerService implements OnApplicationShutdown {
|
||||
|
||||
@bindThis
|
||||
public async dispose(): Promise<void> {
|
||||
await this.streamingApiServerService.detach();
|
||||
this.streamingApiServerService.detach();
|
||||
await this.#fastify.close();
|
||||
}
|
||||
|
||||
|
@ -168,13 +168,12 @@ export class StreamingApiServerService {
|
||||
}
|
||||
|
||||
@bindThis
|
||||
public detach(): Promise<void> {
|
||||
public detach(): void {
|
||||
if (this.#cleanConnectionsIntervalId) {
|
||||
clearInterval(this.#cleanConnectionsIntervalId);
|
||||
this.#cleanConnectionsIntervalId = null;
|
||||
}
|
||||
return new Promise((resolve) => {
|
||||
this.#wss.close(() => resolve());
|
||||
});
|
||||
this.#wss.close();
|
||||
this.#wss.clients.forEach(client => client.terminate());
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user