feat: add less busy worker choice strategy to internal benchmarks
[poolifier.git] / benchmarks / internal / cluster / fixed.js
CommitLineData
292ad316
JB
1const {
2 FixedClusterPool,
3 WorkerChoiceStrategies
4} = require('../../../lib/index')
d1a9aa41 5const { runPoolifierTest } = require('../../benchmarks-utils')
325f50bc
S
6
7const size = 30
e843b904 8const numberOfTasks = 1
325f50bc 9
be0676b3
APA
10const fixedPool = new FixedClusterPool(
11 size,
1927ee67 12 './benchmarks/internal/cluster/worker.js'
be0676b3 13)
325f50bc 14
168c526f 15const fixedPoolLessUsed = new FixedClusterPool(
292ad316
JB
16 size,
17 './benchmarks/internal/cluster/worker.js',
737c6d97 18 { workerChoiceStrategy: WorkerChoiceStrategies.LESS_USED }
292ad316
JB
19)
20
d4abc60a
JB
21const fixedPoolLessBusy = new FixedClusterPool(
22 size,
23 './benchmarks/internal/cluster/worker.js',
24 { workerChoiceStrategy: WorkerChoiceStrategies.LESS_BUSY }
25)
26
2d401b2d
JB
27const fixedPoolWeightedRoundRobin = new FixedClusterPool(
28 size,
29 './benchmarks/internal/cluster/worker.js',
30 { workerChoiceStrategy: WorkerChoiceStrategies.WEIGHTED_ROUND_ROBIN }
31)
32
23ff945a
JB
33const fixedPoolFairShare = new FixedClusterPool(
34 size,
35 './benchmarks/internal/cluster/worker.js',
36 { workerChoiceStrategy: WorkerChoiceStrategies.FAIR_SHARE }
37)
38
325f50bc 39async function fixedClusterTest (
e843b904 40 { tasks, workerData } = { tasks: numberOfTasks, workerData: { proof: 'ok' } }
325f50bc 41) {
74750c7f 42 return runPoolifierTest(fixedPool, { tasks, workerData })
325f50bc
S
43}
44
168c526f 45async function fixedClusterTestLessUsed (
e843b904 46 { tasks, workerData } = { tasks: numberOfTasks, workerData: { proof: 'ok' } }
292ad316 47) {
168c526f 48 return runPoolifierTest(fixedPoolLessUsed, { tasks, workerData })
292ad316
JB
49}
50
d4abc60a
JB
51async function fixedClusterTestLessBusy (
52 { tasks, workerData } = { tasks: numberOfTasks, workerData: { proof: 'ok' } }
53) {
54 return runPoolifierTest(fixedPoolLessBusy, { tasks, workerData })
55}
56
2d401b2d
JB
57async function fixedClusterTestWeightedRoundRobin (
58 { tasks, workerData } = { tasks: numberOfTasks, workerData: { proof: 'ok' } }
59) {
60 return runPoolifierTest(fixedPoolWeightedRoundRobin, { tasks, workerData })
61}
62
23ff945a
JB
63async function fixedClusterTestFairShare (
64 { tasks, workerData } = { tasks: numberOfTasks, workerData: { proof: 'ok' } }
65) {
66 return runPoolifierTest(fixedPoolFairShare, { tasks, workerData })
67}
68
69module.exports = {
70 fixedClusterTest,
168c526f 71 fixedClusterTestLessUsed,
d4abc60a 72 fixedClusterTestLessBusy,
2d401b2d
JB
73 fixedClusterTestWeightedRoundRobin,
74 fixedClusterTestFairShare
23ff945a 75}