feat: add ELU tasks accounting
[poolifier.git] / src / pools / selection-strategies / weighted-round-robin-worker-choice-strategy.ts
1 import type { IWorker } from '../worker'
2 import type { IPool } from '../pool'
3 import { DEFAULT_WORKER_CHOICE_STRATEGY_OPTIONS } from '../../utils'
4 import { AbstractWorkerChoiceStrategy } from './abstract-worker-choice-strategy'
5 import type {
6 IWorkerChoiceStrategy,
7 RequiredStatistics,
8 WorkerChoiceStrategyOptions
9 } from './selection-strategies-types'
10
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 *
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.
17 * @typeParam Response - Type of execution response. This can only be serializable data.
18 */
19 export class WeightedRoundRobinWorkerChoiceStrategy<
20 Worker extends IWorker,
21 Data = unknown,
22 Response = unknown
23 >
24 extends AbstractWorkerChoiceStrategy<Worker, Data, Response>
25 implements IWorkerChoiceStrategy {
26 /** @inheritDoc */
27 public readonly requiredStatistics: RequiredStatistics = {
28 runTime: true,
29 avgRunTime: true,
30 medRunTime: false,
31 waitTime: false,
32 avgWaitTime: false,
33 medWaitTime: false,
34 elu: false
35 }
36
37 /**
38 * Worker node id where the current task will be submitted.
39 */
40 private currentWorkerNodeId: number = 0
41 /**
42 * Default worker weight.
43 */
44 private readonly defaultWorkerWeight: number
45 /**
46 * Worker virtual task runtime.
47 */
48 private workerVirtualTaskRunTime: number = 0
49
50 /** @inheritDoc */
51 public constructor (
52 pool: IPool<Worker, Data, Response>,
53 opts: WorkerChoiceStrategyOptions = DEFAULT_WORKER_CHOICE_STRATEGY_OPTIONS
54 ) {
55 super(pool, opts)
56 this.setRequiredStatistics(this.opts)
57 this.defaultWorkerWeight = this.computeDefaultWorkerWeight()
58 }
59
60 /** @inheritDoc */
61 public reset (): boolean {
62 this.currentWorkerNodeId = 0
63 this.workerVirtualTaskRunTime = 0
64 return true
65 }
66
67 /** @inheritDoc */
68 public update (): boolean {
69 return true
70 }
71
72 /** @inheritDoc */
73 public choose (): number {
74 const chosenWorkerNodeKey = this.currentWorkerNodeId
75 const workerVirtualTaskRunTime = this.workerVirtualTaskRunTime
76 const workerWeight =
77 this.opts.weights?.[chosenWorkerNodeKey] ?? this.defaultWorkerWeight
78 if (workerVirtualTaskRunTime < workerWeight) {
79 this.workerVirtualTaskRunTime =
80 workerVirtualTaskRunTime +
81 this.getWorkerTaskRunTime(chosenWorkerNodeKey)
82 } else {
83 this.currentWorkerNodeId =
84 this.currentWorkerNodeId === this.pool.workerNodes.length - 1
85 ? 0
86 : this.currentWorkerNodeId + 1
87 this.workerVirtualTaskRunTime = 0
88 }
89 return chosenWorkerNodeKey
90 }
91
92 /** @inheritDoc */
93 public remove (workerNodeKey: number): boolean {
94 if (this.currentWorkerNodeId === workerNodeKey) {
95 if (this.pool.workerNodes.length === 0) {
96 this.currentWorkerNodeId = 0
97 } else if (this.currentWorkerNodeId > this.pool.workerNodes.length - 1) {
98 this.currentWorkerNodeId = this.pool.workerNodes.length - 1
99 }
100 this.workerVirtualTaskRunTime = 0
101 }
102 return true
103 }
104 }