X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;ds=sidebyside;f=src%2Fpools%2Fselection-strategies%2Ffair-share-worker-choice-strategy.ts;h=f72ffb566c94345497267e1d9801e36b51f000af;hb=ad8ef5e46b4a08d2bd4b7f95a7f9d4cc63e66509;hp=f8f1821269144ed59f7b33b4cb21ab27e2ea7eeb;hpb=10fcfaf49c0b6d6f0e1d137eeba1e9d805c9a815;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 f8f18212..f72ffb56 100644 --- a/src/pools/selection-strategies/fair-share-worker-choice-strategy.ts +++ b/src/pools/selection-strategies/fair-share-worker-choice-strategy.ts @@ -1,11 +1,17 @@ -import type { AbstractPoolWorker } from '../abstract-pool-worker' +import { DEFAULT_WORKER_CHOICE_STRATEGY_OPTIONS } from '../../utils' +import type { IPool } from '../pool' +import type { IWorker } from '../worker' import { AbstractWorkerChoiceStrategy } from './abstract-worker-choice-strategy' -import type { RequiredStatistics } from './selection-strategies-types' +import type { + IWorkerChoiceStrategy, + RequiredStatistics, + WorkerChoiceStrategyOptions +} from './selection-strategies-types' /** * Worker virtual task timestamp. */ -type WorkerVirtualTaskTimestamp = { +interface WorkerVirtualTaskTimestamp { start: number end: number } @@ -14,62 +20,92 @@ type WorkerVirtualTaskTimestamp = { * Selects the next worker with a fair share scheduling algorithm. * Loosely modeled after the fair queueing algorithm: https://en.wikipedia.org/wiki/Fair_queuing. * - * @template Worker Type of worker which manages the strategy. - * @template Data Type of data sent to the worker. This can only be serializable data. - * @template Response Type of response of execution. This can only be serializable data. + * @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 execution response. This can only be serializable data. */ export class FairShareWorkerChoiceStrategy< - Worker extends AbstractPoolWorker, - Data, - Response -> extends AbstractWorkerChoiceStrategy { + Worker extends IWorker, + Data = unknown, + Response = unknown + > + extends AbstractWorkerChoiceStrategy + implements IWorkerChoiceStrategy { /** @inheritDoc */ - public requiredStatistics: RequiredStatistics = { - runTime: true + public readonly requiredStatistics: RequiredStatistics = { + runTime: true, + avgRunTime: true, + medRunTime: false } /** - * Worker last virtual task execution timestamp. + * Worker last virtual task execution timestamp. */ - private workerLastVirtualTaskTimestamp: Map< - Worker, - WorkerVirtualTaskTimestamp - > = new Map() + private readonly workerLastVirtualTaskTimestamp: Map< + number, + WorkerVirtualTaskTimestamp + > = new Map() /** @inheritDoc */ - public choose (): Worker { - this.updateWorkerLastVirtualTaskTimestamp() + public constructor ( + pool: IPool, + opts: WorkerChoiceStrategyOptions = DEFAULT_WORKER_CHOICE_STRATEGY_OPTIONS + ) { + super(pool, opts) + this.checkOptions(this.opts) + } + + /** @inheritDoc */ + public reset (): boolean { + this.workerLastVirtualTaskTimestamp.clear() + return true + } + + /** @inheritDoc */ + public choose (): number { let minWorkerVirtualTaskEndTimestamp = Infinity - let chosenWorker!: Worker - for (const worker of this.pool.workers) { + let chosenWorkerNodeKey!: number + for (const [index] of this.pool.workerNodes.entries()) { + this.computeWorkerLastVirtualTaskTimestamp(index) const workerLastVirtualTaskEndTimestamp = - this.workerLastVirtualTaskTimestamp.get(worker)?.end ?? 0 + this.workerLastVirtualTaskTimestamp.get(index)?.end ?? 0 if ( workerLastVirtualTaskEndTimestamp < minWorkerVirtualTaskEndTimestamp ) { minWorkerVirtualTaskEndTimestamp = workerLastVirtualTaskEndTimestamp - chosenWorker = worker + chosenWorkerNodeKey = index } } - return chosenWorker + return chosenWorkerNodeKey + } + + /** @inheritDoc */ + public remove (workerNodeKey: number): boolean { + const deleted = this.workerLastVirtualTaskTimestamp.delete(workerNodeKey) + for (const [key, value] of this.workerLastVirtualTaskTimestamp) { + if (key > workerNodeKey) { + this.workerLastVirtualTaskTimestamp.set(key - 1, value) + } + } + return deleted } /** - * Compute workers last virtual task timestamp. + * Computes worker last virtual task timestamp. + * + * @param workerNodeKey - The worker node key. */ - private updateWorkerLastVirtualTaskTimestamp () { - for (const worker of this.pool.workers) { - const workerVirtualTaskStartTimestamp = Math.max( - Date.now(), - this.workerLastVirtualTaskTimestamp.get(worker)?.end ?? 0 - ) - const workerVirtualTaskEndTimestamp = - workerVirtualTaskStartTimestamp + - (this.pool.getWorkerAverageTasksRunTime(worker) ?? 0) - this.workerLastVirtualTaskTimestamp.set(worker, { - start: workerVirtualTaskStartTimestamp, - end: workerVirtualTaskEndTimestamp - }) - } + private computeWorkerLastVirtualTaskTimestamp (workerNodeKey: number): void { + const workerVirtualTaskStartTimestamp = Math.max( + performance.now(), + this.workerLastVirtualTaskTimestamp.get(workerNodeKey)?.end ?? -Infinity + ) + const workerVirtualTaskTRunTime = this.requiredStatistics.medRunTime + ? this.pool.workerNodes[workerNodeKey].tasksUsage.medRunTime + : this.pool.workerNodes[workerNodeKey].tasksUsage.avgRunTime + this.workerLastVirtualTaskTimestamp.set(workerNodeKey, { + start: workerVirtualTaskStartTimestamp, + end: workerVirtualTaskStartTimestamp + (workerVirtualTaskTRunTime ?? 0) + }) } }