X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fpools%2Fselection-strategies%2Ffair-share-worker-choice-strategy.ts;h=aff4e73dd3a6e5a641a626e153f39bd796b32108;hb=26ce26ca8861318068427cc86697103e7a3ddbf4;hp=48198371b54a7d2f8807dcfdd10e53cdc10a579f;hpb=e65c6cd9a3d6ed2e5b8af95120a5aa070101e945;p=poolifier.git diff --git a/src/pools/selection-strategies/fair-share-worker-choice-strategy.ts b/src/pools/selection-strategies/fair-share-worker-choice-strategy.ts index 48198371..aff4e73d 100644 --- a/src/pools/selection-strategies/fair-share-worker-choice-strategy.ts +++ b/src/pools/selection-strategies/fair-share-worker-choice-strategy.ts @@ -1,81 +1,137 @@ -import type { IPoolWorker } from '../pool-worker' +import { DEFAULT_MEASUREMENT_STATISTICS_REQUIREMENTS } from '../../utils' +import type { IPool } from '../pool' +import type { IWorker, StrategyData } from '../worker' import { AbstractWorkerChoiceStrategy } from './abstract-worker-choice-strategy' -import type { RequiredStatistics } from './selection-strategies-types' - -/** - * Worker virtual task timestamp. - */ -interface WorkerVirtualTaskTimestamp { - start: number - end: number -} +import { + type IWorkerChoiceStrategy, + type InternalWorkerChoiceStrategyOptions, + Measurements, + type TaskStatisticsRequirements +} from './selection-strategies-types' /** * Selects the next worker with a fair share scheduling algorithm. * Loosely modeled after the fair queueing algorithm: https://en.wikipedia.org/wiki/Fair_queuing. * * @typeParam Worker - Type of worker which manages the strategy. - * @typeParam Data - Type of data sent to the worker. This can only be serializable data. - * @typeParam Response - Type of response of execution. This can only be serializable data. + * @typeParam Data - Type of data sent to the worker. This can only be structured-cloneable data. + * @typeParam Response - Type of execution response. This can only be structured-cloneable data. */ export class FairShareWorkerChoiceStrategy< - Worker extends IPoolWorker, - Data, - Response -> extends AbstractWorkerChoiceStrategy { - /** {@inheritDoc} */ - public readonly requiredStatistics: RequiredStatistics = { - runTime: true + Worker extends IWorker, + Data = unknown, + Response = unknown + > + extends AbstractWorkerChoiceStrategy + implements IWorkerChoiceStrategy { + /** @inheritDoc */ + public readonly taskStatisticsRequirements: TaskStatisticsRequirements = { + runTime: { + aggregate: true, + average: true, + median: false + }, + waitTime: DEFAULT_MEASUREMENT_STATISTICS_REQUIREMENTS, + elu: { + aggregate: true, + average: true, + median: false + } } - /** - * Worker last virtual task execution timestamp. - */ - private readonly workerLastVirtualTaskTimestamp: Map< - Worker, - WorkerVirtualTaskTimestamp - > = new Map() + /** @inheritDoc */ + public constructor ( + pool: IPool, + opts: InternalWorkerChoiceStrategyOptions + ) { + super(pool, opts) + this.setTaskStatisticsRequirements(this.opts) + } - /** {@inheritDoc} */ + /** @inheritDoc */ public reset (): boolean { - this.workerLastVirtualTaskTimestamp.clear() + for (const workerNode of this.pool.workerNodes) { + delete workerNode.strategyData?.virtualTaskEndTimestamp + } return true } - /** {@inheritDoc} */ - public choose (): Worker { - let minWorkerVirtualTaskEndTimestamp = Infinity - let chosenWorker!: Worker - for (const workerItem of this.pool.workers) { - const worker = workerItem.worker - this.computeWorkerLastVirtualTaskTimestamp(worker) - const workerLastVirtualTaskEndTimestamp = - this.workerLastVirtualTaskTimestamp.get(worker)?.end ?? 0 - if ( - workerLastVirtualTaskEndTimestamp < minWorkerVirtualTaskEndTimestamp - ) { - minWorkerVirtualTaskEndTimestamp = workerLastVirtualTaskEndTimestamp - chosenWorker = worker - } + /** @inheritDoc */ + public update (workerNodeKey: number): boolean { + this.pool.workerNodes[workerNodeKey].strategyData = { + virtualTaskEndTimestamp: + this.computeWorkerNodeVirtualTaskEndTimestamp(workerNodeKey) } - return chosenWorker + return true + } + + /** @inheritDoc */ + public choose (): number | undefined { + this.setPreviousWorkerNodeKey(this.nextWorkerNodeKey) + this.nextWorkerNodeKey = this.fairShareNextWorkerNodeKey() + return this.nextWorkerNodeKey + } + + /** @inheritDoc */ + public remove (): boolean { + return true + } + + private fairShareNextWorkerNodeKey (): number | undefined { + return this.pool.workerNodes.reduce( + (minWorkerNodeKey, workerNode, workerNodeKey, workerNodes) => { + if (workerNode.strategyData?.virtualTaskEndTimestamp == null) { + workerNode.strategyData = { + virtualTaskEndTimestamp: + this.computeWorkerNodeVirtualTaskEndTimestamp(workerNodeKey) + } + } + return this.isWorkerNodeReady(workerNodeKey) && + (workerNode.strategyData.virtualTaskEndTimestamp as number) < + ((workerNodes[minWorkerNodeKey].strategyData as StrategyData) + .virtualTaskEndTimestamp as number) + ? workerNodeKey + : minWorkerNodeKey + }, + 0 + ) } /** - * Computes worker last virtual task timestamp. + * Computes the worker node key virtual task end timestamp. * - * @param worker - The worker. + * @param workerNodeKey - The worker node key. + * @returns The worker node key virtual task end timestamp. */ - private computeWorkerLastVirtualTaskTimestamp (worker: Worker): void { - const workerVirtualTaskStartTimestamp = Math.max( - Date.now(), - this.workerLastVirtualTaskTimestamp.get(worker)?.end ?? -Infinity + private computeWorkerNodeVirtualTaskEndTimestamp ( + workerNodeKey: number + ): number { + return this.getWorkerNodeVirtualTaskEndTimestamp( + workerNodeKey, + this.getWorkerNodeVirtualTaskStartTimestamp(workerNodeKey) ) - this.workerLastVirtualTaskTimestamp.set(worker, { - start: workerVirtualTaskStartTimestamp, - end: - workerVirtualTaskStartTimestamp + - (this.pool.getWorkerTasksUsage(worker)?.avgRunTime ?? 0) - }) + } + + private getWorkerNodeVirtualTaskEndTimestamp ( + workerNodeKey: number, + workerNodeVirtualTaskStartTimestamp: number + ): number { + const workerNodeTaskRunTime = + this.opts.measurement === Measurements.elu + ? this.getWorkerNodeTaskElu(workerNodeKey) + : this.getWorkerNodeTaskRunTime(workerNodeKey) + return workerNodeVirtualTaskStartTimestamp + workerNodeTaskRunTime + } + + private getWorkerNodeVirtualTaskStartTimestamp ( + workerNodeKey: number + ): number { + const virtualTaskEndTimestamp = + this.pool.workerNodes[workerNodeKey]?.strategyData + ?.virtualTaskEndTimestamp + const now = performance.now() + return now < (virtualTaskEndTimestamp ?? -Infinity) + ? (virtualTaskEndTimestamp as number) + : now } }