Merge branch 'master' into combined-prs-branch
[poolifier.git] / benchmarks / versus-external-pools / dynamic-node-worker-threads-pool.mjs
... / ...
CommitLineData
1// IMPORT LIBRARIES
2import { DynamicPool } from 'node-worker-threads-pool'
3// FINISH IMPORT LIBRARIES
4// IMPORT FUNCTION TO BENCH
5import functionToBench from './functions/function-to-bench.js'
6// FINISH IMPORT FUNCTION TO BENCH
7const size = parseInt(process.env.POOL_SIZE)
8const iterations = parseInt(process.env.NUM_ITERATIONS)
9const data = {
10 test: 'MYBENCH',
11 taskType: process.env.TASK_TYPE,
12 taskSize: parseInt(process.env.TASK_SIZE)
13}
14
15const pool = new DynamicPool(size)
16
17async function run () {
18 const promises = new Set()
19 for (let i = 0; i < iterations; i++) {
20 promises.add(
21 pool.exec({
22 task: functionToBench,
23 param: data,
24 timeout: 60000 // this is the same as poolifier default
25 })
26 )
27 }
28 await Promise.all(promises)
29 // eslint-disable-next-line n/no-process-exit
30 process.exit()
31}
32
33await run()