X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fpools%2Fselection-strategies%2Ffair-share-worker-choice-strategy.ts;h=e42d54d9fbabbe847731fd7b0387d9bb8a94f642;hb=08f3f44cef6256fdbab1a2a56842b291fd6dcd42;hp=f72ffb566c94345497267e1d9801e36b51f000af;hpb=ad8ef5e46b4a08d2bd4b7f95a7f9d4cc63e66509;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 f72ffb56..e42d54d9 100644 --- a/src/pools/selection-strategies/fair-share-worker-choice-strategy.ts +++ b/src/pools/selection-strategies/fair-share-worker-choice-strategy.ts @@ -39,12 +39,9 @@ export class FairShareWorkerChoiceStrategy< } /** - * Worker last virtual task execution timestamp. + * Workers' virtual task execution timestamp. */ - private readonly workerLastVirtualTaskTimestamp: Map< - number, - WorkerVirtualTaskTimestamp - > = new Map() + private workersVirtualTaskTimestamp: WorkerVirtualTaskTimestamp[] = [] /** @inheritDoc */ public constructor ( @@ -57,7 +54,7 @@ export class FairShareWorkerChoiceStrategy< /** @inheritDoc */ public reset (): boolean { - this.workerLastVirtualTaskTimestamp.clear() + this.workersVirtualTaskTimestamp = [] return true } @@ -65,15 +62,15 @@ export class FairShareWorkerChoiceStrategy< public choose (): number { let minWorkerVirtualTaskEndTimestamp = Infinity let chosenWorkerNodeKey!: number - for (const [index] of this.pool.workerNodes.entries()) { - this.computeWorkerLastVirtualTaskTimestamp(index) + for (const [workerNodeKey] of this.pool.workerNodes.entries()) { + this.computeWorkerVirtualTaskTimestamp(workerNodeKey) const workerLastVirtualTaskEndTimestamp = - this.workerLastVirtualTaskTimestamp.get(index)?.end ?? 0 + this.workersVirtualTaskTimestamp[workerNodeKey]?.end ?? 0 if ( workerLastVirtualTaskEndTimestamp < minWorkerVirtualTaskEndTimestamp ) { minWorkerVirtualTaskEndTimestamp = workerLastVirtualTaskEndTimestamp - chosenWorkerNodeKey = index + chosenWorkerNodeKey = workerNodeKey } } return chosenWorkerNodeKey @@ -81,31 +78,26 @@ export class FairShareWorkerChoiceStrategy< /** @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 + this.workersVirtualTaskTimestamp.splice(workerNodeKey, 1) + return true } /** - * Computes worker last virtual task timestamp. + * Computes worker virtual task timestamp. * * @param workerNodeKey - The worker node key. */ - private computeWorkerLastVirtualTaskTimestamp (workerNodeKey: number): void { + private computeWorkerVirtualTaskTimestamp (workerNodeKey: number): void { const workerVirtualTaskStartTimestamp = Math.max( performance.now(), - this.workerLastVirtualTaskTimestamp.get(workerNodeKey)?.end ?? -Infinity + this.workersVirtualTaskTimestamp[workerNodeKey]?.end ?? -Infinity ) const workerVirtualTaskTRunTime = this.requiredStatistics.medRunTime ? this.pool.workerNodes[workerNodeKey].tasksUsage.medRunTime : this.pool.workerNodes[workerNodeKey].tasksUsage.avgRunTime - this.workerLastVirtualTaskTimestamp.set(workerNodeKey, { + this.workersVirtualTaskTimestamp[workerNodeKey] = { start: workerVirtualTaskStartTimestamp, end: workerVirtualTaskStartTimestamp + (workerVirtualTaskTRunTime ?? 0) - }) + } } }