2 import Tinypool from 'tinypool'
3 // FINISH IMPORT LIBRARIES
4 const size = parseInt(process.env.POOL_SIZE)
5 const iterations = parseInt(process.env.NUM_ITERATIONS)
8 taskType: process.env.TASK_TYPE,
9 taskSize: parseInt(process.env.TASK_SIZE)
12 const tinypool = new Tinypool({
13 filename: './workers/tinypool/function-to-bench-worker.mjs',
16 idleTimeout: 60000 // this is the same as poolifier default
19 async function run () {
20 const promises = new Set()
21 for (let i = 0; i < iterations; i++) {
22 promises.add(tinypool.run(data))
24 await Promise.all(promises)
25 // eslint-disable-next-line n/no-process-exit