Bump @types/node from 14.14.31 to 14.14.32 (#258)
[poolifier.git] / benchmarks / versus-external-pools / dynamic-piscina.js
CommitLineData
be0676b3
APA
1// IMPORT LIBRARIES
2const Piscina = require('piscina')
3// FINISH IMPORT LIBRARIES
4const size = process.env.POOL_SIZE
5const iterations = process.env.NUM_ITERATIONS
6const data = {
9f7e7a99 7 test: 'MYBENCH',
8 taskType: process.env['TASK_TYPE']
be0676b3
APA
9}
10
11const piscina = new Piscina({
9f7e7a99 12 filename: './workers/piscina/function-to-bench-worker.js',
be0676b3
APA
13 minThreads: Number(size),
14 maxThreads: size * 3,
15 idleTimeout: 1000 * 60 // this is the same as poolifier default
16})
17
18async function run () {
19 const promises = []
20 for (let i = 0; i < iterations; i++) {
21 promises.push(piscina.runTask(data))
22 }
23 await Promise.all(promises)
24 process.exit()
25}
26
27run()