feat: add statistics accounting to ELU fields
[poolifier.git] / src / pools / selection-strategies / weighted-round-robin-worker-choice-strategy.ts
CommitLineData
f06e48d8 1import type { IWorker } from '../worker'
65d7a1c9
JB
2import type { IPool } from '../pool'
3import { DEFAULT_WORKER_CHOICE_STRATEGY_OPTIONS } from '../../utils'
b3432a63 4import { AbstractWorkerChoiceStrategy } from './abstract-worker-choice-strategy'
bf90656c
JB
5import type {
6 IWorkerChoiceStrategy,
87de9ff5 7 TaskStatisticsRequirements,
da309861 8 WorkerChoiceStrategyOptions
bf90656c 9} from './selection-strategies-types'
b3432a63 10
b3432a63
JB
11/**
12 * Selects the next worker with a weighted round robin scheduling algorithm.
13 * Loosely modeled after the weighted round robin queueing algorithm: https://en.wikipedia.org/wiki/Weighted_round_robin.
14 *
38e795c1
JB
15 * @typeParam Worker - Type of worker which manages the strategy.
16 * @typeParam Data - Type of data sent to the worker. This can only be serializable data.
02706357 17 * @typeParam Response - Type of execution response. This can only be serializable data.
b3432a63
JB
18 */
19export class WeightedRoundRobinWorkerChoiceStrategy<
f06e48d8 20 Worker extends IWorker,
b2b1d84e
JB
21 Data = unknown,
22 Response = unknown
bf90656c
JB
23 >
24 extends AbstractWorkerChoiceStrategy<Worker, Data, Response>
17393ac8 25 implements IWorkerChoiceStrategy {
afc003b2 26 /** @inheritDoc */
87de9ff5 27 public readonly taskStatisticsRequirements: TaskStatisticsRequirements = {
932fc8be
JB
28 runTime: {
29 aggregate: true,
30 average: true,
31 median: false
32 },
33 waitTime: {
34 aggregate: false,
35 average: false,
36 median: false
37 },
5df69fab
JB
38 elu: {
39 aggregate: false,
40 average: false,
41 median: false
42 }
10fcfaf4
JB
43 }
44
b3432a63 45 /**
f06e48d8 46 * Worker node id where the current task will be submitted.
b3432a63 47 */
f06e48d8 48 private currentWorkerNodeId: number = 0
b3432a63
JB
49 /**
50 * Default worker weight.
51 */
777af0ac 52 private readonly defaultWorkerWeight: number
b3432a63 53 /**
08f3f44c 54 * Worker virtual task runtime.
b3432a63 55 */
08f3f44c 56 private workerVirtualTaskRunTime: number = 0
b3432a63 57
2fc5cae3 58 /** @inheritDoc */
da309861 59 public constructor (
c4855468 60 pool: IPool<Worker, Data, Response>,
2fc5cae3 61 opts: WorkerChoiceStrategyOptions = DEFAULT_WORKER_CHOICE_STRATEGY_OPTIONS
da309861
JB
62 ) {
63 super(pool, opts)
932fc8be 64 this.setTaskStatisticsRequirements(this.opts)
08f3f44c 65 this.defaultWorkerWeight = this.computeDefaultWorkerWeight()
b3432a63
JB
66 }
67
afc003b2 68 /** @inheritDoc */
a6f7f1b4 69 public reset (): boolean {
f06e48d8 70 this.currentWorkerNodeId = 0
08f3f44c 71 this.workerVirtualTaskRunTime = 0
ea7a90d3
JB
72 return true
73 }
74
138d29a8
JB
75 /** @inheritDoc */
76 public update (): boolean {
77 return true
78 }
79
afc003b2 80 /** @inheritDoc */
c923ce56 81 public choose (): number {
f06e48d8 82 const chosenWorkerNodeKey = this.currentWorkerNodeId
138d29a8
JB
83 const workerVirtualTaskRunTime = this.workerVirtualTaskRunTime
84 const workerWeight =
08f3f44c 85 this.opts.weights?.[chosenWorkerNodeKey] ?? this.defaultWorkerWeight
138d29a8 86 if (workerVirtualTaskRunTime < workerWeight) {
08f3f44c 87 this.workerVirtualTaskRunTime =
0d80593b 88 workerVirtualTaskRunTime +
f6b641d6 89 this.getWorkerTaskRunTime(chosenWorkerNodeKey)
b3432a63 90 } else {
f06e48d8
JB
91 this.currentWorkerNodeId =
92 this.currentWorkerNodeId === this.pool.workerNodes.length - 1
b3432a63 93 ? 0
f06e48d8 94 : this.currentWorkerNodeId + 1
08f3f44c 95 this.workerVirtualTaskRunTime = 0
b3432a63 96 }
f06e48d8 97 return chosenWorkerNodeKey
b3432a63
JB
98 }
99
afc003b2 100 /** @inheritDoc */
f06e48d8
JB
101 public remove (workerNodeKey: number): boolean {
102 if (this.currentWorkerNodeId === workerNodeKey) {
103 if (this.pool.workerNodes.length === 0) {
104 this.currentWorkerNodeId = 0
97f4fd90
JB
105 } else if (this.currentWorkerNodeId > this.pool.workerNodes.length - 1) {
106 this.currentWorkerNodeId = this.pool.workerNodes.length - 1
78ab2555 107 }
08f3f44c 108 this.workerVirtualTaskRunTime = 0
97a2abc3 109 }
08f3f44c 110 return true
2377984d 111 }
b3432a63 112}