X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=examples%2Ftypescript%2Fhttp-server-pool%2Ffastify-hybrid%2Fsrc%2Fmain.ts;h=d840dfb9529d0c01e659e7e8b79080cdb3c5938b;hb=fd98bbb90c7202f5dd734c029f3cee2f997aea24;hp=d995fd290f2977ad3bcee810da394ba53e49c91a;hpb=503bda5baced9515d2fc20b85d4deb3da2dab93a;p=poolifier.git diff --git a/examples/typescript/http-server-pool/fastify-hybrid/src/main.ts b/examples/typescript/http-server-pool/fastify-hybrid/src/main.ts index d995fd29..d840dfb9 100644 --- a/examples/typescript/http-server-pool/fastify-hybrid/src/main.ts +++ b/examples/typescript/http-server-pool/fastify-hybrid/src/main.ts @@ -22,7 +22,10 @@ const pool = new FixedClusterPool( .execute({ port: 8080, workerFile: requestHandlerWorkerFile, - maxWorkers: Math.round(availableParallelism() / 2), + maxWorkers: + Math.round(availableParallelism() / 4) < 1 + ? 1 + : Math.round(availableParallelism() / 4), enableTasksQueue: true, tasksQueueOptions: { concurrency: 8 @@ -31,17 +34,17 @@ const pool = new FixedClusterPool( console.error('Thread worker error', e) } }) - .then(response => { + .then((response) => { if (response.status) { console.info( // eslint-disable-next-line @typescript-eslint/restrict-template-expressions - `Fastify is listening on cluster worker on port ${response.port}` + `Fastify is listening in cluster worker on port ${response.port}` ) } return null }) - .catch(error => { - console.error('Fastify failed to start on cluster worker:', error) + .catch((error) => { + console.error('Fastify failed to start in cluster worker:', error) }) }, errorHandler: (e: Error) => {