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