refactor: factor out common code in worker choice strategies
[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,
da309861
JB
7 RequiredStatistics,
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 */
ea7a90d3 27 public readonly requiredStatistics: RequiredStatistics = {
c6bd2650 28 runTime: true,
78099a15 29 avgRunTime: true,
0567595a
JB
30 medRunTime: false,
31 waitTime: false,
32 avgWaitTime: false,
33 medWaitTime: false
10fcfaf4
JB
34 }
35
b3432a63 36 /**
f06e48d8 37 * Worker node id where the current task will be submitted.
b3432a63 38 */
f06e48d8 39 private currentWorkerNodeId: number = 0
b3432a63
JB
40 /**
41 * Default worker weight.
42 */
777af0ac 43 private readonly defaultWorkerWeight: number
b3432a63 44 /**
08f3f44c 45 * Worker virtual task runtime.
b3432a63 46 */
08f3f44c 47 private workerVirtualTaskRunTime: number = 0
b3432a63 48
2fc5cae3 49 /** @inheritDoc */
da309861 50 public constructor (
c4855468 51 pool: IPool<Worker, Data, Response>,
2fc5cae3 52 opts: WorkerChoiceStrategyOptions = DEFAULT_WORKER_CHOICE_STRATEGY_OPTIONS
da309861
JB
53 ) {
54 super(pool, opts)
49be33fe 55 this.setRequiredStatistics(this.opts)
08f3f44c 56 this.defaultWorkerWeight = this.computeDefaultWorkerWeight()
b3432a63
JB
57 }
58
afc003b2 59 /** @inheritDoc */
a6f7f1b4 60 public reset (): boolean {
f06e48d8 61 this.currentWorkerNodeId = 0
08f3f44c 62 this.workerVirtualTaskRunTime = 0
ea7a90d3
JB
63 return true
64 }
65
138d29a8
JB
66 /** @inheritDoc */
67 public update (): boolean {
68 return true
69 }
70
afc003b2 71 /** @inheritDoc */
c923ce56 72 public choose (): number {
f06e48d8 73 const chosenWorkerNodeKey = this.currentWorkerNodeId
138d29a8
JB
74 const workerVirtualTaskRunTime = this.workerVirtualTaskRunTime
75 const workerWeight =
08f3f44c 76 this.opts.weights?.[chosenWorkerNodeKey] ?? this.defaultWorkerWeight
138d29a8 77 if (workerVirtualTaskRunTime < workerWeight) {
08f3f44c 78 this.workerVirtualTaskRunTime =
0d80593b 79 workerVirtualTaskRunTime +
f6b641d6 80 this.getWorkerTaskRunTime(chosenWorkerNodeKey)
b3432a63 81 } else {
f06e48d8
JB
82 this.currentWorkerNodeId =
83 this.currentWorkerNodeId === this.pool.workerNodes.length - 1
b3432a63 84 ? 0
f06e48d8 85 : this.currentWorkerNodeId + 1
08f3f44c 86 this.workerVirtualTaskRunTime = 0
b3432a63 87 }
f06e48d8 88 return chosenWorkerNodeKey
b3432a63
JB
89 }
90
afc003b2 91 /** @inheritDoc */
f06e48d8
JB
92 public remove (workerNodeKey: number): boolean {
93 if (this.currentWorkerNodeId === workerNodeKey) {
94 if (this.pool.workerNodes.length === 0) {
95 this.currentWorkerNodeId = 0
97f4fd90
JB
96 } else if (this.currentWorkerNodeId > this.pool.workerNodes.length - 1) {
97 this.currentWorkerNodeId = this.pool.workerNodes.length - 1
78ab2555 98 }
08f3f44c 99 this.workerVirtualTaskRunTime = 0
97a2abc3 100 }
08f3f44c 101 return true
2377984d 102 }
b3432a63 103}