X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=examples%2Ftypescript%2Fhttp-server-pool%2Ffastify-hybrid%2Fsrc%2Fmain.ts;h=66be31a8aca6bef23391127b94391efc0b75361c;hb=8a11c8fd0b8be823629d0475ee16362b0bb31d25;hp=795a358bd52d85acedf2f3c87c4edd4e15d4626f;hpb=02999424382a7c531bcc2c0485d4ebbe76853d62;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 795a358b..66be31a8 100644 --- a/examples/typescript/http-server-pool/fastify-hybrid/src/main.ts +++ b/examples/typescript/http-server-pool/fastify-hybrid/src/main.ts @@ -8,24 +8,43 @@ const fastifyWorkerFile = join( `fastify-worker${extname(fileURLToPath(import.meta.url))}` ) +const requestHandlerWorkerFile = join( + dirname(fileURLToPath(import.meta.url)), + `request-handler-worker${extname(fileURLToPath(import.meta.url))}` +) + const pool = new FixedClusterPool( Math.round(availableParallelism() / 2), fastifyWorkerFile, { onlineHandler: () => { pool - .execute({ port: 8080 }) + .execute({ + port: 8080, + workerFile: requestHandlerWorkerFile, + maxWorkers: + Math.round(availableParallelism() / 4) < 1 + ? 1 + : Math.round(availableParallelism() / 4), + enableTasksQueue: true, + tasksQueueOptions: { + concurrency: 8 + }, + errorHandler: (e: Error) => { + console.error('Thread worker error', e) + } + }) .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) + console.error('Fastify failed to start in cluster worker:', error) }) }, errorHandler: (e: Error) => {