Merge dependabot/npm_and_yarn/examples/typescript/http-server-pool/fastify-cluster...
[poolifier.git] / examples / typescript / http-server-pool / fastify-hybrid / src / main.ts
index d995fd290f2977ad3bcee810da394ba53e49c91a..66be31a8aca6bef23391127b94391efc0b75361c 100644 (file)
@@ -22,7 +22,10 @@ const pool = new FixedClusterPool<ClusterWorkerData, ClusterWorkerResponse>(
         .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
@@ -35,13 +38,13 @@ const pool = new FixedClusterPool<ClusterWorkerData, ClusterWorkerResponse>(
           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) => {