feat: worker node readiness aware worker choice strategies
[poolifier.git] / src / pools / selection-strategies / fair-share-worker-choice-strategy.ts
CommitLineData
3c93feb9
JB
1import {
2 DEFAULT_MEASUREMENT_STATISTICS_REQUIREMENTS,
3 DEFAULT_WORKER_CHOICE_STRATEGY_OPTIONS
4} from '../../utils'
2fc5cae3 5import type { IPool } from '../pool'
f06e48d8 6import type { IWorker } from '../worker'
23ff945a 7import { AbstractWorkerChoiceStrategy } from './abstract-worker-choice-strategy'
9adcefab
JB
8import {
9 type IWorkerChoiceStrategy,
10 Measurements,
11 type TaskStatisticsRequirements,
12 type WorkerChoiceStrategyOptions
bf90656c 13} from './selection-strategies-types'
23ff945a 14
23ff945a
JB
15/**
16 * Selects the next worker with a fair share scheduling algorithm.
17 * Loosely modeled after the fair queueing algorithm: https://en.wikipedia.org/wiki/Fair_queuing.
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.
23ff945a
JB
22 */
23export class FairShareWorkerChoiceStrategy<
f06e48d8 24 Worker extends IWorker,
b2b1d84e
JB
25 Data = unknown,
26 Response = unknown
bf90656c
JB
27 >
28 extends AbstractWorkerChoiceStrategy<Worker, Data, Response>
17393ac8 29 implements IWorkerChoiceStrategy {
afc003b2 30 /** @inheritDoc */
87de9ff5 31 public readonly taskStatisticsRequirements: TaskStatisticsRequirements = {
932fc8be
JB
32 runTime: {
33 aggregate: true,
34 average: true,
35 median: false
36 },
3c93feb9 37 waitTime: DEFAULT_MEASUREMENT_STATISTICS_REQUIREMENTS,
5df69fab 38 elu: {
9adcefab
JB
39 aggregate: true,
40 average: true,
5df69fab
JB
41 median: false
42 }
10fcfaf4
JB
43 }
44
23ff945a 45 /**
b0d6ed8f 46 * Workers' virtual task end execution timestamp.
23ff945a 47 */
b0d6ed8f 48 private workersVirtualTaskEndTimestamp: number[] = []
23ff945a 49
2fc5cae3
JB
50 /** @inheritDoc */
51 public constructor (
52 pool: IPool<Worker, Data, Response>,
53 opts: WorkerChoiceStrategyOptions = DEFAULT_WORKER_CHOICE_STRATEGY_OPTIONS
54 ) {
55 super(pool, opts)
932fc8be 56 this.setTaskStatisticsRequirements(this.opts)
2fc5cae3
JB
57 }
58
afc003b2 59 /** @inheritDoc */
a6f7f1b4 60 public reset (): boolean {
b0d6ed8f 61 this.workersVirtualTaskEndTimestamp = []
ea7a90d3
JB
62 return true
63 }
64
138d29a8 65 /** @inheritDoc */
a4958de2 66 public update (workerNodeKey: number): boolean {
b0d6ed8f 67 this.computeWorkerVirtualTaskEndTimestamp(workerNodeKey)
db703c75
JB
68 return true
69 }
70
71 /** @inheritDoc */
72 public choose (): number {
23ff945a 73 let minWorkerVirtualTaskEndTimestamp = Infinity
08f3f44c 74 for (const [workerNodeKey] of this.pool.workerNodes.entries()) {
b0d6ed8f
JB
75 if (this.workersVirtualTaskEndTimestamp[workerNodeKey] == null) {
76 this.computeWorkerVirtualTaskEndTimestamp(workerNodeKey)
77 }
0d80593b 78 const workerVirtualTaskEndTimestamp =
b0d6ed8f 79 this.workersVirtualTaskEndTimestamp[workerNodeKey]
19dbc45b
JB
80 if (
81 this.workerNodeReady(workerNodeKey) &&
82 workerVirtualTaskEndTimestamp < minWorkerVirtualTaskEndTimestamp
83 ) {
0d80593b 84 minWorkerVirtualTaskEndTimestamp = workerVirtualTaskEndTimestamp
d33be430 85 this.nextWorkerNodeId = workerNodeKey
23ff945a
JB
86 }
87 }
d33be430 88 return this.nextWorkerNodeId
23ff945a
JB
89 }
90
afc003b2 91 /** @inheritDoc */
f06e48d8 92 public remove (workerNodeKey: number): boolean {
b0d6ed8f 93 this.workersVirtualTaskEndTimestamp.splice(workerNodeKey, 1)
08f3f44c 94 return true
97a2abc3
JB
95 }
96
23ff945a 97 /**
b0d6ed8f 98 * Computes the worker node key virtual task end timestamp.
11df3590 99 *
f06e48d8 100 * @param workerNodeKey - The worker node key.
23ff945a 101 */
b0d6ed8f
JB
102 private computeWorkerVirtualTaskEndTimestamp (workerNodeKey: number): void {
103 this.workersVirtualTaskEndTimestamp[workerNodeKey] =
104 this.getWorkerVirtualTaskEndTimestamp(
105 workerNodeKey,
106 this.getWorkerVirtualTaskStartTimestamp(workerNodeKey)
107 )
108 }
109
110 private getWorkerVirtualTaskEndTimestamp (
111 workerNodeKey: number,
112 workerVirtualTaskStartTimestamp: number
113 ): number {
9adcefab
JB
114 const workerTaskRunTime =
115 this.opts.measurement === Measurements.elu
116 ? this.getWorkerTaskElu(workerNodeKey)
117 : this.getWorkerTaskRunTime(workerNodeKey)
118 return workerVirtualTaskStartTimestamp + workerTaskRunTime
b0d6ed8f
JB
119 }
120
121 private getWorkerVirtualTaskStartTimestamp (workerNodeKey: number): number {
122 return Math.max(
123 performance.now(),
124 this.workersVirtualTaskEndTimestamp[workerNodeKey] ?? -Infinity
125 )
23ff945a
JB
126 }
127}