Switch eslint-plugin-node to supported eslint-plugin-n
[poolifier.git] / benchmarks / versus-external-pools / dynamic-piscina.js
1 // IMPORT LIBRARIES
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)
6 const data = {
7 test: 'MYBENCH',
8 taskType: process.env.TASK_TYPE,
9 taskSize: process.env.TASK_SIZE
10 }
11
12 const piscina = new Piscina({
13 filename: './workers/piscina/function-to-bench-worker.js',
14 minThreads: size,
15 maxThreads: size * 3,
16 idleTimeout: 60000 // this is the same as poolifier default
17 })
18
19 async function run () {
20 const promises = []
21 for (let i = 0; i < iterations; i++) {
22 promises.push(piscina.run(data))
23 }
24 await Promise.all(promises)
25 // eslint-disable-next-line n/no-process-exit
26 process.exit()
27 }
28
29 run()