fix: ensure the number of worker choice retries is enough for WRR
[poolifier.git] / src / pools / selection-strategies / abstract-worker-choice-strategy.ts
CommitLineData
0bbf65c3 1import { cpus } from 'node:os'
3c93feb9
JB
2import {
3 DEFAULT_MEASUREMENT_STATISTICS_REQUIREMENTS,
26ce26ca 4 getDefaultInternalWorkerChoiceStrategyOptions
3c93feb9 5} from '../../utils'
08f3f44c 6import type { IPool } from '../pool'
f06e48d8 7import type { IWorker } from '../worker'
10fcfaf4
JB
8import type {
9 IWorkerChoiceStrategy,
26ce26ca 10 InternalWorkerChoiceStrategyOptions,
57441b79 11 MeasurementStatisticsRequirements,
6c6afb84 12 StrategyPolicy,
26ce26ca 13 TaskStatisticsRequirements
10fcfaf4 14} from './selection-strategies-types'
bdaf31cd
JB
15
16/**
9cd39dd4 17 * Worker choice strategy abstract base class.
bdaf31cd 18 *
38e795c1 19 * @typeParam Worker - Type of worker which manages the strategy.
e102732c
JB
20 * @typeParam Data - Type of data sent to the worker. This can only be structured-cloneable data.
21 * @typeParam Response - Type of execution response. This can only be structured-cloneable data.
bdaf31cd
JB
22 */
23export abstract class AbstractWorkerChoiceStrategy<
f06e48d8 24 Worker extends IWorker,
b2b1d84e
JB
25 Data = unknown,
26 Response = unknown
17393ac8 27> implements IWorkerChoiceStrategy {
d33be430 28 /**
9b106837 29 * The next worker node key.
d33be430 30 */
b1aae695 31 protected nextWorkerNodeKey: number | undefined = 0
d33be430 32
7c7bb289
JB
33 /**
34 * The previous worker node key.
35 */
36 protected previousWorkerNodeKey: number = 0
37
6c6afb84
JB
38 /** @inheritDoc */
39 public readonly strategyPolicy: StrategyPolicy = {
b1aae695 40 dynamicWorkerUsage: false,
f6bc9f26 41 dynamicWorkerReady: true
6c6afb84
JB
42 }
43
afc003b2 44 /** @inheritDoc */
87de9ff5 45 public readonly taskStatisticsRequirements: TaskStatisticsRequirements = {
3c93feb9
JB
46 runTime: DEFAULT_MEASUREMENT_STATISTICS_REQUIREMENTS,
47 waitTime: DEFAULT_MEASUREMENT_STATISTICS_REQUIREMENTS,
48 elu: DEFAULT_MEASUREMENT_STATISTICS_REQUIREMENTS
10fcfaf4 49 }
bdaf31cd
JB
50
51 /**
6533c3e6 52 * Constructs a worker choice strategy bound to the pool.
bdaf31cd 53 *
38e795c1 54 * @param pool - The pool instance.
da309861 55 * @param opts - The worker choice strategy options.
bdaf31cd
JB
56 */
57 public constructor (
c4855468 58 protected readonly pool: IPool<Worker, Data, Response>,
26ce26ca 59 protected opts: InternalWorkerChoiceStrategyOptions
b8f3418c 60 ) {
26ce26ca 61 this.setOptions(this.opts)
7254e419 62 this.choose = this.choose.bind(this)
b8f3418c 63 }
bdaf31cd 64
932fc8be 65 protected setTaskStatisticsRequirements (
26ce26ca 66 opts: InternalWorkerChoiceStrategyOptions
932fc8be 67 ): void {
57441b79
JB
68 this.toggleMedianMeasurementStatisticsRequirements(
69 this.taskStatisticsRequirements.runTime,
70 opts.runTime?.median as boolean
71 )
72 this.toggleMedianMeasurementStatisticsRequirements(
73 this.taskStatisticsRequirements.waitTime,
74 opts.waitTime?.median as boolean
75 )
76 this.toggleMedianMeasurementStatisticsRequirements(
77 this.taskStatisticsRequirements.elu,
78 opts.elu?.median as boolean
79 )
80 }
81
82 private toggleMedianMeasurementStatisticsRequirements (
83 measurementStatisticsRequirements: MeasurementStatisticsRequirements,
84 toggleMedian: boolean
85 ): void {
86 if (measurementStatisticsRequirements.average && toggleMedian) {
87 measurementStatisticsRequirements.average = false
88 measurementStatisticsRequirements.median = toggleMedian
5df69fab 89 }
57441b79
JB
90 if (measurementStatisticsRequirements.median && !toggleMedian) {
91 measurementStatisticsRequirements.average = true
92 measurementStatisticsRequirements.median = toggleMedian
5df69fab 93 }
da309861
JB
94 }
95
39a43af7
JB
96 protected resetWorkerNodeKeyProperties (): void {
97 this.nextWorkerNodeKey = 0
98 this.previousWorkerNodeKey = 0
99 }
100
afc003b2 101 /** @inheritDoc */
a6f7f1b4 102 public abstract reset (): boolean
ea7a90d3 103
138d29a8 104 /** @inheritDoc */
a4958de2 105 public abstract update (workerNodeKey: number): boolean
138d29a8 106
afc003b2 107 /** @inheritDoc */
b1aae695 108 public abstract choose (): number | undefined
97a2abc3 109
afc003b2 110 /** @inheritDoc */
f06e48d8 111 public abstract remove (workerNodeKey: number): boolean
a20f0ba5
JB
112
113 /** @inheritDoc */
26ce26ca
JB
114 public setOptions (opts: InternalWorkerChoiceStrategyOptions): void {
115 this.opts = {
449cd154
JB
116 ...getDefaultInternalWorkerChoiceStrategyOptions(
117 this.pool.info.maxSize +
118 Object.keys((opts?.weights as Record<number, number>) ?? {}).length
119 ),
26ce26ca
JB
120 ...opts
121 }
65ab8dcc 122 this.setTaskStatisticsRequirements(this.opts)
a20f0ba5 123 }
cb70b19d 124
fb5a7307
JB
125 /** @inheritDoc */
126 public hasPoolWorkerNodesReady (): boolean {
127 return this.pool.workerNodes.some(workerNode => workerNode.info.ready)
128 }
129
d4ddb68b
JB
130 /**
131 * Whether the worker node is ready or not.
132 *
133 * @param workerNodeKey - The worker node key.
134 * @returns Whether the worker node is ready or not.
135 */
ae3ab61d 136 protected isWorkerNodeReady (workerNodeKey: number): boolean {
535fd8d5 137 return this.pool.workerNodes[workerNodeKey]?.info?.ready ?? false
19dbc45b
JB
138 }
139
a38b62f1
JB
140 /**
141 * Check the next worker node readiness.
142 */
143 protected checkNextWorkerNodeReadiness (): void {
144 if (!this.isWorkerNodeReady(this.nextWorkerNodeKey as number)) {
145 delete this.nextWorkerNodeKey
146 }
147 }
148
f6b641d6 149 /**
f3a91bac 150 * Gets the worker node task runtime.
932fc8be
JB
151 * If the task statistics require the average runtime, the average runtime is returned.
152 * If the task statistics require the median runtime , the median runtime is returned.
f6b641d6
JB
153 *
154 * @param workerNodeKey - The worker node key.
f3a91bac 155 * @returns The worker node task runtime.
f6b641d6 156 */
f3a91bac 157 protected getWorkerNodeTaskRunTime (workerNodeKey: number): number {
932fc8be 158 return this.taskStatisticsRequirements.runTime.median
46b0bb09
JB
159 ? this.pool.workerNodes[workerNodeKey].usage.runTime.median ?? 0
160 : this.pool.workerNodes[workerNodeKey].usage.runTime.average ?? 0
f6b641d6
JB
161 }
162
ef680bb8 163 /**
f3a91bac 164 * Gets the worker node task wait time.
932fc8be
JB
165 * If the task statistics require the average wait time, the average wait time is returned.
166 * If the task statistics require the median wait time, the median wait time is returned.
ef680bb8
JB
167 *
168 * @param workerNodeKey - The worker node key.
f3a91bac 169 * @returns The worker node task wait time.
ef680bb8 170 */
f3a91bac 171 protected getWorkerNodeTaskWaitTime (workerNodeKey: number): number {
932fc8be 172 return this.taskStatisticsRequirements.waitTime.median
46b0bb09
JB
173 ? this.pool.workerNodes[workerNodeKey].usage.waitTime.median ?? 0
174 : this.pool.workerNodes[workerNodeKey].usage.waitTime.average ?? 0
ef680bb8
JB
175 }
176
5df69fab 177 /**
f3a91bac 178 * Gets the worker node task ELU.
9adcefab
JB
179 * If the task statistics require the average ELU, the average ELU is returned.
180 * If the task statistics require the median ELU, the median ELU is returned.
5df69fab
JB
181 *
182 * @param workerNodeKey - The worker node key.
f3a91bac 183 * @returns The worker node task ELU.
5df69fab 184 */
f3a91bac 185 protected getWorkerNodeTaskElu (workerNodeKey: number): number {
5df69fab 186 return this.taskStatisticsRequirements.elu.median
46b0bb09
JB
187 ? this.pool.workerNodes[workerNodeKey].usage.elu.active.median ?? 0
188 : this.pool.workerNodes[workerNodeKey].usage.elu.active.average ?? 0
5df69fab
JB
189 }
190
baca80f7
JB
191 /**
192 * Sets safely the previous worker node key.
193 *
194 * @param workerNodeKey - The worker node key.
195 */
196 protected setPreviousWorkerNodeKey (workerNodeKey: number | undefined): void {
197 this.previousWorkerNodeKey = workerNodeKey ?? this.previousWorkerNodeKey
198 }
199
0bbf65c3
JB
200 protected computeDefaultWorkerWeight (): number {
201 let cpusCycleTimeWeight = 0
202 for (const cpu of cpus()) {
203 // CPU estimated cycle time
204 const numberOfDigits = cpu.speed.toString().length - 1
205 const cpuCycleTime = 1 / (cpu.speed / Math.pow(10, numberOfDigits))
206 cpusCycleTimeWeight += cpuCycleTime * Math.pow(10, numberOfDigits)
207 }
208 return Math.round(cpusCycleTimeWeight / cpus().length)
209 }
bdaf31cd 210}