feat: add ELU tasks accounting
[poolifier.git] / src / pools / selection-strategies / least-busy-worker-choice-strategy.ts
CommitLineData
2fc5cae3
JB
1import { DEFAULT_WORKER_CHOICE_STRATEGY_OPTIONS } from '../../utils'
2import type { IPool } from '../pool'
f06e48d8 3import type { IWorker } from '../worker'
168c526f 4import { AbstractWorkerChoiceStrategy } from './abstract-worker-choice-strategy'
bf90656c
JB
5import type {
6 IWorkerChoiceStrategy,
2fc5cae3
JB
7 RequiredStatistics,
8 WorkerChoiceStrategyOptions
bf90656c 9} from './selection-strategies-types'
168c526f
JB
10
11/**
e4543b14 12 * Selects the least busy worker.
168c526f
JB
13 *
14 * @typeParam Worker - Type of worker which manages the strategy.
15 * @typeParam Data - Type of data sent to the worker. This can only be serializable data.
02706357 16 * @typeParam Response - Type of execution response. This can only be serializable data.
168c526f 17 */
e4543b14 18export class LeastBusyWorkerChoiceStrategy<
f06e48d8 19 Worker extends IWorker,
b2b1d84e
JB
20 Data = unknown,
21 Response = unknown
bf90656c
JB
22 >
23 extends AbstractWorkerChoiceStrategy<Worker, Data, Response>
17393ac8 24 implements IWorkerChoiceStrategy {
afc003b2 25 /** @inheritDoc */
168c526f 26 public readonly requiredStatistics: RequiredStatistics = {
c6bd2650 27 runTime: true,
78099a15 28 avgRunTime: false,
0567595a
JB
29 medRunTime: false,
30 waitTime: false,
31 avgWaitTime: false,
62c15a68
JB
32 medWaitTime: false,
33 elu: false
168c526f
JB
34 }
35
2fc5cae3
JB
36 /** @inheritDoc */
37 public constructor (
38 pool: IPool<Worker, Data, Response>,
39 opts: WorkerChoiceStrategyOptions = DEFAULT_WORKER_CHOICE_STRATEGY_OPTIONS
40 ) {
41 super(pool, opts)
49be33fe 42 this.setRequiredStatistics(this.opts)
2fc5cae3
JB
43 }
44
afc003b2 45 /** @inheritDoc */
168c526f
JB
46 public reset (): boolean {
47 return true
48 }
49
138d29a8
JB
50 /** @inheritDoc */
51 public update (): boolean {
52 return true
53 }
54
afc003b2 55 /** @inheritDoc */
c923ce56 56 public choose (): number {
cb70b19d 57 const freeWorkerNodeKey = this.findFreeWorkerNodeKey()
f06e48d8
JB
58 if (freeWorkerNodeKey !== -1) {
59 return freeWorkerNodeKey
c141008c 60 }
168c526f 61 let minRunTime = Infinity
e4543b14 62 let leastBusyWorkerNodeKey!: number
08f3f44c 63 for (const [workerNodeKey, workerNode] of this.pool.workerNodes.entries()) {
f06e48d8 64 const workerRunTime = workerNode.tasksUsage.runTime
cf9c7b65 65 if (workerRunTime === 0) {
08f3f44c 66 return workerNodeKey
168c526f
JB
67 } else if (workerRunTime < minRunTime) {
68 minRunTime = workerRunTime
e4543b14 69 leastBusyWorkerNodeKey = workerNodeKey
168c526f
JB
70 }
71 }
e4543b14 72 return leastBusyWorkerNodeKey
168c526f 73 }
97a2abc3 74
afc003b2 75 /** @inheritDoc */
a4958de2 76 public remove (): boolean {
97a2abc3
JB
77 return true
78 }
168c526f 79}