fix: make benchmark vs. external pools self-contained
[poolifier.git] / benchmarks / versus-external-pools / dynamic-poolifier.mjs
1 import { DynamicThreadPool } from 'poolifier'
2 import { executeAsyncFn } from './utils.mjs'
3
4 const size = parseInt(process.env.POOL_SIZE)
5 const iterations = parseInt(process.env.NUM_ITERATIONS)
6 const data = {
7 test: 'MYBENCH',
8 taskType: process.env.TASK_TYPE,
9 taskSize: parseInt(process.env.TASK_SIZE)
10 }
11
12 const dynamicThreadPool = new DynamicThreadPool(
13 Math.floor(size / 2),
14 size,
15 './workers/poolifier/function-to-bench-worker.mjs',
16 {
17 enableTasksQueue: false
18 }
19 )
20
21 async function run () {
22 const promises = new Set()
23 for (let i = 0; i < iterations; i++) {
24 promises.add(dynamicThreadPool.execute(data))
25 }
26 await Promise.all(promises)
27 // eslint-disable-next-line n/no-process-exit
28 process.exit()
29 }
30
31 await executeAsyncFn(run)