2 const Piscina
= require('piscina')
3 // FINISH IMPORT LIBRARIES
4 const size
= Number(process
.env
.POOL_SIZE
)
5 const iterations
= Number(process
.env
.NUM_ITERATIONS
)
8 taskType
: process
.env
['TASK_TYPE']
11 const piscina
= new Piscina({
12 filename
: './workers/piscina/function-to-bench-worker.js',
15 idleTimeout
: 1000 * 60 // this is the same as poolifier default
18 async
function run () {
20 for (let i
= 0; i
< iterations
; i
++) {
21 promises
.push(piscina
.runTask(data
))
23 await Promise
.all(promises
)