Improve benchmarks: add IO intensive task workload, add task size option, integrate...
[poolifier.git] / benchmarks / versus-external-pools / dynamic-suchmokuo-node-worker-threads-pool.js
CommitLineData
be0676b3 1// IMPORT LIBRARIES
144f78e0 2const { DynamicPool } = require('node-worker-threads-pool')
be0676b3
APA
3// FINISH IMPORT LIBRARIES
4// IMPORT FUNCTION TO BENCH
9f7e7a99 5const functionToBench = require('./functions/function-to-bench')
be0676b3 6// FINISH IMPORT FUNCTION TO BENCH
79e7d368
JB
7const size = Number(process.env.POOL_SIZE)
8const iterations = Number(process.env.NUM_ITERATIONS)
be0676b3 9const data = {
9f7e7a99 10 test: 'MYBENCH',
7a6a0a96
JB
11 taskType: process.env.TASK_TYPE,
12 taskSize: process.env.TASK_SIZE
be0676b3
APA
13}
14
79e7d368 15const pool = new DynamicPool(size)
be0676b3
APA
16
17async function run () {
18 const promises = []
19 for (let i = 0; i < iterations; i++) {
20 promises.push(
21 pool.exec({
22 task: functionToBench,
23 param: data
24 })
25 )
26 }
27 await Promise.all(promises)
7a6a0a96 28 // eslint-disable-next-line no-process-exit
be0676b3
APA
29 process.exit()
30}
31
32run()