Merge dependabot/npm_and_yarn/examples/typescript/websocket-server-pool/ws-worker_thr...
[poolifier.git] / benchmarks / versus-external-pools / dynamic-piscina.mjs
... / ...
CommitLineData
1import Piscina from 'piscina'
2import { executeAsyncFn } from './utils.mjs'
3
4const size = parseInt(process.env.POOL_SIZE)
5const iterations = parseInt(process.env.NUM_ITERATIONS)
6const data = {
7 test: 'MYBENCH',
8 taskType: process.env.TASK_TYPE,
9 taskSize: parseInt(process.env.TASK_SIZE)
10}
11
12const piscina = new Piscina({
13 filename: './workers/piscina/function-to-bench-worker.mjs',
14 minThreads: Math.floor(size / 2),
15 maxThreads: size,
16 idleTimeout: 60000 // this is the same as poolifier default
17})
18
19async function run () {
20 const promises = new Set()
21 for (let i = 0; i < iterations; i++) {
22 promises.add(piscina.run(data))
23 }
24 await Promise.all(promises)
25 // eslint-disable-next-line n/no-process-exit
26 process.exit()
27}
28
29await executeAsyncFn(run)