Gracefully shutdown server (#265)

* Gracefully shutdown server

* Forbid lint warnings

* Avoid setting subgraph path in template contex in codegen
This commit is contained in:
prathamesh0
2022-11-28 12:01:28 +05:30
committed by GitHub
parent 2417e3feb1
commit bd8f003322
19 changed files with 57 additions and 48 deletions
+27
View File
@@ -26,6 +26,9 @@ export class EventWatcher {
_pubsub: PubSub
_jobQueue: JobQueue
_shutDown = false
_signalCount = 0
constructor (ethClient: EthClient, indexer: IndexerInterface, pubsub: PubSub, jobQueue: JobQueue) {
this._ethClient = ethClient;
this._indexer = indexer;
@@ -44,7 +47,10 @@ export class EventWatcher {
async start (): Promise<void> {
await this.initBlockProcessingOnCompleteHandler();
await this.initEventProcessingOnCompleteHandler();
this.startBlockProcessing();
this.handleShutdown();
}
async initBlockProcessingOnCompleteHandler (): Promise<void> {
@@ -85,12 +91,33 @@ export class EventWatcher {
for await (const data of blockProgressEventIterable) {
const { onBlockProgressEvent: { blockNumber, isComplete } } = data;
if (this._shutDown) {
log(`Graceful shutdown after processing block ${blockNumber}`);
process.exit(0);
}
if (isComplete) {
await processBlockByNumber(this._jobQueue, blockNumber + 1);
}
}
}
handleShutdown (): void {
process.on('SIGINT', this._processShutdown.bind(this));
process.on('SIGTERM', this._processShutdown.bind(this));
}
async _processShutdown (): Promise<void> {
this._shutDown = true;
this._signalCount++;
if (this._signalCount >= 3 || process.env.YARN_CHILD_PROCESS === 'true') {
// Forceful exit on receiving signal for the 3rd time or if job-runner is a child process of yarn.
log('Forceful shutdown');
process.exit(1);
}
}
async blockProcessingCompleteHandler (job: any): Promise<void> {
const { id, data: { failed, request: { data } } } = job;
const { kind } = data;
+3 -1
View File
@@ -39,9 +39,10 @@ export class JobRunner {
_jobQueueConfig: JobQueueConfig
_blockProcessStartTime?: Date
_endBlockProcessTimer?: () => void
_blockAndEventsMap: Map<string, PrefetchedBlock> = new Map()
_shutDown = false
_signalCount = 0
_blockAndEventsMap: Map<string, PrefetchedBlock> = new Map()
constructor (jobQueueConfig: JobQueueConfig, indexer: IndexerInterface, jobQueue: JobQueue) {
this._indexer = indexer;
@@ -220,6 +221,7 @@ export class JobRunner {
if (this._signalCount >= 3 || process.env.YARN_CHILD_PROCESS === 'true') {
// Forceful exit on receiving signal for the 3rd time or if job-runner is a child process of yarn.
log('Forceful shutdown');
this.jobQueue.stop();
process.exit(1);
}