Improve benchmarks: add IO intensive task workload, add task size option, integrate...
[poolifier.git] / benchmarks / versus-external-pools / dynamic-poolifier.js
1 // IMPORT LIBRARIES
2 const { DynamicThreadPool } = require('poolifier')
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 dynamicPool = new DynamicThreadPool(
13 size,
14 size * 3,
15 './workers/poolifier/function-to-bench-worker.js'
16 )
17
18 async function run () {
19 const promises = []
20 for (let i = 0; i < iterations; i++) {
21 promises.push(dynamicPool.execute(data))
22 }
23 await Promise.all(promises)
24 // eslint-disable-next-line no-process-exit
25 process.exit()
26 }
27
28 run()