fix: partially revert "fix: sort round weights descending in IWRR"
[poolifier.git] / src / pools / selection-strategies / interleaved-weighted-round-robin-worker-choice-strategy.ts
CommitLineData
feec6e8c
JB
1import type { IWorker } from '../worker'
2import type { IPool } from '../pool'
619f403b
JB
3import {
4 DEFAULT_MEASUREMENT_STATISTICS_REQUIREMENTS,
5 DEFAULT_WORKER_CHOICE_STRATEGY_OPTIONS
6} from '../../utils'
feec6e8c
JB
7import { AbstractWorkerChoiceStrategy } from './abstract-worker-choice-strategy'
8import type {
9 IWorkerChoiceStrategy,
619f403b 10 TaskStatisticsRequirements,
feec6e8c
JB
11 WorkerChoiceStrategyOptions
12} from './selection-strategies-types'
13
14/**
15 * Selects the next worker with an interleaved weighted round robin scheduling algorithm.
16 *
17 * @typeParam Worker - Type of worker which manages the strategy.
e102732c
JB
18 * @typeParam Data - Type of data sent to the worker. This can only be structured-cloneable data.
19 * @typeParam Response - Type of execution response. This can only be structured-cloneable data.
feec6e8c
JB
20 */
21export class InterleavedWeightedRoundRobinWorkerChoiceStrategy<
22 Worker extends IWorker,
23 Data = unknown,
24 Response = unknown
25 >
26 extends AbstractWorkerChoiceStrategy<Worker, Data, Response>
27 implements IWorkerChoiceStrategy {
619f403b
JB
28 /** @inheritDoc */
29 public readonly taskStatisticsRequirements: TaskStatisticsRequirements = {
30 runTime: {
31 aggregate: true,
32 average: true,
33 median: false
34 },
35 waitTime: DEFAULT_MEASUREMENT_STATISTICS_REQUIREMENTS,
36 elu: DEFAULT_MEASUREMENT_STATISTICS_REQUIREMENTS
37 }
38
feec6e8c 39 /**
d33be430 40 * Round id.
feec6e8c 41 */
d33be430 42 private roundId: number = 0
619f403b
JB
43 /**
44 * Default worker weight.
45 */
46 private readonly defaultWorkerWeight: number
feec6e8c
JB
47 /**
48 * Round weights.
49 */
e4854a4e 50 private roundWeights: number[]
feec6e8c 51 /**
619f403b 52 * Worker node id.
feec6e8c 53 */
619f403b
JB
54 private workerNodeId: number = 0
55 /**
f3a91bac 56 * Worker node virtual task runtime.
619f403b 57 */
f3a91bac 58 private workerNodeVirtualTaskRunTime: number = 0
feec6e8c
JB
59
60 /** @inheritDoc */
61 public constructor (
62 pool: IPool<Worker, Data, Response>,
63 opts: WorkerChoiceStrategyOptions = DEFAULT_WORKER_CHOICE_STRATEGY_OPTIONS
64 ) {
65 super(pool, opts)
932fc8be 66 this.setTaskStatisticsRequirements(this.opts)
feec6e8c
JB
67 this.defaultWorkerWeight = this.computeDefaultWorkerWeight()
68 this.roundWeights = this.getRoundWeights()
69 }
70
71 /** @inheritDoc */
72 public reset (): boolean {
39a43af7 73 this.resetWorkerNodeKeyProperties()
d33be430 74 this.roundId = 0
619f403b 75 this.workerNodeId = 0
f3a91bac 76 this.workerNodeVirtualTaskRunTime = 0
feec6e8c
JB
77 return true
78 }
79
80 /** @inheritDoc */
81 public update (): boolean {
82 return true
83 }
84
85 /** @inheritDoc */
b1aae695 86 public choose (): number | undefined {
297f3bbe 87 for (
d33be430 88 let roundIndex = this.roundId;
d3127e84
JB
89 roundIndex < this.roundWeights.length;
90 roundIndex++
297f3bbe 91 ) {
619f403b 92 this.roundId = roundIndex
feec6e8c 93 for (
619f403b 94 let workerNodeKey = this.workerNodeId;
297f3bbe
JB
95 workerNodeKey < this.pool.workerNodes.length;
96 workerNodeKey++
feec6e8c 97 ) {
619f403b 98 this.workerNodeId = workerNodeKey
619f403b
JB
99 if (
100 this.workerNodeId !== this.nextWorkerNodeKey &&
f3a91bac 101 this.workerNodeVirtualTaskRunTime !== 0
619f403b 102 ) {
f3a91bac 103 this.workerNodeVirtualTaskRunTime = 0
619f403b 104 }
297f3bbe
JB
105 const workerWeight =
106 this.opts.weights?.[workerNodeKey] ?? this.defaultWorkerWeight
619f403b 107 if (
97256a85 108 this.isWorkerNodeReady(workerNodeKey) &&
619f403b 109 workerWeight >= this.roundWeights[roundIndex] &&
f3a91bac 110 this.workerNodeVirtualTaskRunTime < workerWeight
619f403b 111 ) {
f3a91bac
JB
112 this.workerNodeVirtualTaskRunTime =
113 this.workerNodeVirtualTaskRunTime +
114 this.getWorkerNodeTaskRunTime(workerNodeKey)
baca80f7 115 this.setPreviousWorkerNodeKey(this.nextWorkerNodeKey)
619f403b
JB
116 this.nextWorkerNodeKey = workerNodeKey
117 return this.nextWorkerNodeKey
feec6e8c
JB
118 }
119 }
297f3bbe 120 }
619f403b
JB
121 this.interleavedWeightedRoundRobinNextWorkerNodeId()
122 }
123
124 private interleavedWeightedRoundRobinNextWorkerNodeId (): void {
a38b62f1
JB
125 if (
126 this.roundId === this.roundWeights.length - 1 &&
127 this.workerNodeId === this.pool.workerNodes.length - 1
128 ) {
129 this.roundId = 0
130 this.workerNodeId = 0
131 } else if (this.workerNodeId === this.pool.workerNodes.length - 1) {
132 this.roundId = this.roundId + 1
133 this.workerNodeId = 0
134 } else {
135 this.workerNodeId = this.workerNodeId + 1
136 }
feec6e8c
JB
137 }
138
139 /** @inheritDoc */
140 public remove (workerNodeKey: number): boolean {
226b02a3
JB
141 if (this.pool.workerNodes.length === 0) {
142 this.reset()
143 }
144 if (
145 this.workerNodeId === workerNodeKey &&
146 this.workerNodeId > this.pool.workerNodes.length - 1
147 ) {
148 this.workerNodeId = this.pool.workerNodes.length - 1
149 }
150 if (
151 this.previousWorkerNodeKey === workerNodeKey &&
152 this.previousWorkerNodeKey > this.pool.workerNodes.length - 1
153 ) {
154 this.previousWorkerNodeKey = this.pool.workerNodes.length - 1
feec6e8c
JB
155 }
156 return true
157 }
158
e4854a4e
JB
159 /** @inheritDoc */
160 public setOptions (opts: WorkerChoiceStrategyOptions): void {
161 super.setOptions(opts)
162 this.roundWeights = this.getRoundWeights()
163 }
164
feec6e8c
JB
165 private getRoundWeights (): number[] {
166 if (this.opts.weights == null) {
167 return [this.defaultWorkerWeight]
168 }
169 return [
170 ...new Set(
171 Object.values(this.opts.weights)
172 .slice()
b808b625 173 .sort((a, b) => a - b)
feec6e8c
JB
174 )
175 ]
176 }
177}