X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Futils.ts;h=20493767db87d80689a6cb067df3e22f72b759ce;hb=af7fe15acbe47c6b2236426034dd5cb08c271bbc;hp=5a685439ed7725c0bc305df5d86af2f670a5a9a3;hpb=304d379e73b2b31fbbb8f44a4c05501c36cd6c61;p=poolifier.git diff --git a/src/utils.ts b/src/utils.ts index 5a685439..20493767 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -2,9 +2,10 @@ import * as os from 'node:os' import { getRandomValues } from 'node:crypto' import { Worker as ClusterWorker } from 'node:cluster' import { Worker as ThreadWorker } from 'node:worker_threads' +import { cpus } from 'node:os' import type { - MeasurementStatisticsRequirements, - WorkerChoiceStrategyOptions + InternalWorkerChoiceStrategyOptions, + MeasurementStatisticsRequirements } from './pools/selection-strategies/selection-strategies-types' import type { KillBehavior } from './worker/worker-options' import { type IWorker, type WorkerType, WorkerTypes } from './pools/worker' @@ -22,15 +23,21 @@ export const EMPTY_FUNCTION: () => void = Object.freeze(() => { }) /** - * Default worker choice strategy options. + * Gets default worker choice strategy options. + * + * @param retries - The number of worker choice retries. + * @returns The default worker choice strategy options. */ -export const DEFAULT_WORKER_CHOICE_STRATEGY_OPTIONS: WorkerChoiceStrategyOptions = - { - retries: 6, +const getDefaultInternalWorkerChoiceStrategyOptions = ( + retries: number +): InternalWorkerChoiceStrategyOptions => { + return { + retries, runTime: { median: false }, waitTime: { median: false }, elu: { median: false } } +} /** * Default measurement statistics requirements. @@ -274,3 +281,45 @@ export const once = ( return result } } + +const clone = (object: T): T => { + return JSON.parse(JSON.stringify(object)) as T +} + +export const buildInternalWorkerChoiceStrategyOptions = ( + poolMaxSize: number, + opts?: InternalWorkerChoiceStrategyOptions +): InternalWorkerChoiceStrategyOptions => { + opts = clone(opts ?? {}) + if (opts.weights == null) { + opts.weights = getDefaultWeights(poolMaxSize) + } + return { + ...getDefaultInternalWorkerChoiceStrategyOptions( + poolMaxSize + Object.keys(opts?.weights ?? {}).length + ), + ...opts + } +} + +const getDefaultWeights = ( + poolMaxSize: number, + defaultWorkerWeight: number = getDefaultWorkerWeight() +): Record => { + const weights: Record = {} + for (let workerNodeKey = 0; workerNodeKey < poolMaxSize; workerNodeKey++) { + weights[workerNodeKey] = defaultWorkerWeight + } + return weights +} + +const getDefaultWorkerWeight = (): number => { + let cpusCycleTimeWeight = 0 + for (const cpu of cpus()) { + // CPU estimated cycle time + const numberOfDigits = cpu.speed.toString().length - 1 + const cpuCycleTime = 1 / (cpu.speed / Math.pow(10, numberOfDigits)) + cpusCycleTimeWeight += cpuCycleTime * Math.pow(10, numberOfDigits) + } + return Math.round(cpusCycleTimeWeight / cpus().length) +}