fix: make benchmark vs. external pools self-contained
[poolifier.git] / benchmarks / versus-external-pools / fixed-tinypool.mjs
CommitLineData
935f9dbf 1import Tinypool from 'tinypool'
35704ec7 2import { executeAsyncFn } from './utils.mjs'
479ba9f6 3
935f9dbf
JB
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 tinypool = new Tinypool({
8fca9288 13 filename: './workers/tinypool/function-to-bench-worker.mjs',
935f9dbf 14 minThreads: size,
6bb19f6b 15 maxThreads: size,
935f9dbf
JB
16 idleTimeout: 60000 // this is the same as poolifier default
17})
18
935f9dbf 19async function run () {
1655b92e 20 const promises = new Set()
935f9dbf 21 for (let i = 0; i < iterations; i++) {
1655b92e 22 promises.add(tinypool.run(data))
935f9dbf
JB
23 }
24 await Promise.all(promises)
25 // eslint-disable-next-line n/no-process-exit
26 process.exit()
27}
28
479ba9f6 29await executeAsyncFn(run)