refactor: renable standard JS linter rules
[poolifier.git] / src / pools / selection-strategies / weighted-round-robin-worker-choice-strategy.ts
1 import type { IWorker } from '../worker.js'
2 import type { IPool } from '../pool.js'
3 import { DEFAULT_MEASUREMENT_STATISTICS_REQUIREMENTS } from '../../utils.js'
4 import { AbstractWorkerChoiceStrategy } from './abstract-worker-choice-strategy.js'
5 import type {
6 IWorkerChoiceStrategy,
7 InternalWorkerChoiceStrategyOptions,
8 TaskStatisticsRequirements
9 } from './selection-strategies-types.js'
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 structured-cloneable data.
17 * @typeParam Response - Type of execution response. This can only be structured-cloneable 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 taskStatisticsRequirements: TaskStatisticsRequirements = {
28 runTime: {
29 aggregate: true,
30 average: true,
31 median: false
32 },
33 waitTime: DEFAULT_MEASUREMENT_STATISTICS_REQUIREMENTS,
34 elu: DEFAULT_MEASUREMENT_STATISTICS_REQUIREMENTS
35 }
36
37 /**
38 * Worker node virtual task runtime.
39 */
40 private workerNodeVirtualTaskRunTime: number = 0
41
42 /** @inheritDoc */
43 public constructor (
44 pool: IPool<Worker, Data, Response>,
45 opts: InternalWorkerChoiceStrategyOptions
46 ) {
47 super(pool, opts)
48 this.setTaskStatisticsRequirements(this.opts)
49 }
50
51 /** @inheritDoc */
52 public reset (): boolean {
53 this.resetWorkerNodeKeyProperties()
54 this.workerNodeVirtualTaskRunTime = 0
55 return true
56 }
57
58 /** @inheritDoc */
59 public update (): boolean {
60 return true
61 }
62
63 /** @inheritDoc */
64 public choose (): number | undefined {
65 this.setPreviousWorkerNodeKey(this.nextWorkerNodeKey)
66 this.weightedRoundRobinNextWorkerNodeKey()
67 this.checkNextWorkerNodeReadiness()
68 return this.nextWorkerNodeKey
69 }
70
71 /** @inheritDoc */
72 public remove (workerNodeKey: number): boolean {
73 if (this.pool.workerNodes.length === 0) {
74 this.reset()
75 }
76 if (this.nextWorkerNodeKey === workerNodeKey) {
77 this.workerNodeVirtualTaskRunTime = 0
78 if (this.nextWorkerNodeKey > this.pool.workerNodes.length - 1) {
79 this.nextWorkerNodeKey = this.pool.workerNodes.length - 1
80 }
81 }
82 if (
83 this.previousWorkerNodeKey === workerNodeKey &&
84 this.previousWorkerNodeKey > this.pool.workerNodes.length - 1
85 ) {
86 this.previousWorkerNodeKey = this.pool.workerNodes.length - 1
87 }
88 return true
89 }
90
91 private weightedRoundRobinNextWorkerNodeKey (): number | undefined {
92 const workerWeight =
93 // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
94 this.opts.weights![this.nextWorkerNodeKey ?? this.previousWorkerNodeKey]!
95 if (this.workerNodeVirtualTaskRunTime < workerWeight) {
96 this.workerNodeVirtualTaskRunTime =
97 this.workerNodeVirtualTaskRunTime +
98 this.getWorkerNodeTaskRunTime(
99 this.nextWorkerNodeKey ?? this.previousWorkerNodeKey
100 )
101 } else {
102 this.nextWorkerNodeKey =
103 this.nextWorkerNodeKey === this.pool.workerNodes.length - 1
104 ? 0
105 : (this.nextWorkerNodeKey ?? this.previousWorkerNodeKey) + 1
106 this.workerNodeVirtualTaskRunTime = 0
107 }
108 return this.nextWorkerNodeKey
109 }
110 }