1 import { EventEmitter
} from
'node:events'
2 import { type TransferListItem
} from
'node:worker_threads'
3 import type { TaskFunction
} from
'../worker/task-functions'
15 WorkerChoiceStrategyOptions
16 } from
'./selection-strategies/selection-strategies-types'
19 * Enumeration of pool types.
21 export const PoolTypes
= Object.freeze({
35 export type PoolType
= keyof
typeof PoolTypes
38 * Pool events emitter.
40 export class PoolEmitter
extends EventEmitter
{}
43 * Enumeration of pool events.
45 export const PoolEvents
= Object.freeze({
51 taskError
: 'taskError',
52 backPressure
: 'backPressure'
58 export type PoolEvent
= keyof
typeof PoolEvents
63 export interface PoolInfo
{
64 readonly version
: string
65 readonly type: PoolType
66 readonly worker
: WorkerType
67 readonly started
: boolean
68 readonly ready
: boolean
69 readonly strategy
: WorkerChoiceStrategy
70 readonly minSize
: number
71 readonly maxSize
: number
72 /** Pool utilization. */
73 readonly utilization
?: number
74 /** Pool total worker nodes. */
75 readonly workerNodes
: number
76 /** Pool idle worker nodes. */
77 readonly idleWorkerNodes
: number
78 /** Pool busy worker nodes. */
79 readonly busyWorkerNodes
: number
80 readonly executedTasks
: number
81 readonly executingTasks
: number
82 readonly queuedTasks
?: number
83 readonly maxQueuedTasks
?: number
84 readonly backPressure
?: boolean
85 readonly stolenTasks
?: number
86 readonly failedTasks
: number
88 readonly minimum
: number
89 readonly maximum
: number
90 readonly average
?: number
91 readonly median
?: number
94 readonly minimum
: number
95 readonly maximum
: number
96 readonly average
?: number
97 readonly median
?: number
102 * Worker node tasks queue options.
104 export interface TasksQueueOptions
{
106 * Maximum tasks queue size per worker node flagging it as back pressured.
108 * @defaultValue (pool maximum size)^2
110 readonly size
?: number
112 * Maximum number of tasks that can be executed concurrently on a worker node.
116 readonly concurrency
?: number
118 * Whether to enable task stealing.
122 readonly taskStealing
?: boolean
124 * Whether to enable tasks stealing on back pressure.
128 readonly tasksStealingOnBackPressure
?: boolean
132 * Options for a poolifier pool.
134 * @typeParam Worker - Type of worker.
136 export interface PoolOptions
<Worker
extends IWorker
> {
138 * A function that will listen for online event on each worker.
140 * @defaultValue `() => {}`
142 onlineHandler
?: OnlineHandler
<Worker
>
144 * A function that will listen for message event on each worker.
146 * @defaultValue `() => {}`
148 messageHandler
?: MessageHandler
<Worker
>
150 * A function that will listen for error event on each worker.
152 * @defaultValue `() => {}`
154 errorHandler
?: ErrorHandler
<Worker
>
156 * A function that will listen for exit event on each worker.
158 * @defaultValue `() => {}`
160 exitHandler
?: ExitHandler
<Worker
>
162 * Whether to start the minimum number of workers at pool initialization.
166 startWorkers
?: boolean
168 * The worker choice strategy to use in this pool.
170 * @defaultValue WorkerChoiceStrategies.ROUND_ROBIN
172 workerChoiceStrategy
?: WorkerChoiceStrategy
174 * The worker choice strategy options.
176 workerChoiceStrategyOptions
?: WorkerChoiceStrategyOptions
178 * Restart worker on error.
180 restartWorkerOnError
?: boolean
182 * Pool events emission.
186 enableEvents
?: boolean
188 * Pool worker node tasks queue.
190 * @defaultValue false
192 enableTasksQueue
?: boolean
194 * Pool worker node tasks queue options.
196 tasksQueueOptions
?: TasksQueueOptions
200 * Contract definition for a poolifier pool.
202 * @typeParam Worker - Type of worker which manages this pool.
203 * @typeParam Data - Type of data sent to the worker. This can only be structured-cloneable data.
204 * @typeParam Response - Type of execution response. This can only be structured-cloneable data.
206 export interface IPool
<
207 Worker
extends IWorker
,
214 readonly info
: PoolInfo
220 readonly workerNodes
: Array<IWorkerNode
<Worker
, Data
>>
222 * Whether the worker node has back pressure (i.e. its tasks queue is full).
224 * @param workerNodeKey - The worker node key.
225 * @returns `true` if the worker node has back pressure, `false` otherwise.
228 readonly hasWorkerNodeBackPressure
: (workerNodeKey
: number) => boolean
230 * Emitter on which events can be listened to.
232 * Events that can currently be listened to:
234 * - `'ready'`: Emitted when the number of workers created in the pool has reached the minimum size expected and are ready.
235 * - `'busy'`: Emitted when the number of workers created in the pool has reached the maximum size expected and are executing concurrently their tasks quota.
236 * - `'full'`: Emitted when the pool is dynamic and the number of workers created has reached the maximum size expected.
237 * - `'destroy'`: Emitted when the pool is destroyed.
238 * - `'error'`: Emitted when an uncaught error occurs.
239 * - `'taskError'`: Emitted when an error occurs while executing a task.
240 * - `'backPressure'`: Emitted when all worker nodes have back pressure (i.e. their tasks queue is full: queue size \>= maximum queue size).
242 readonly emitter
?: PoolEmitter
244 * Executes the specified function in the worker constructor with the task data input parameter.
246 * @param data - The optional task input data for the specified task function. This can only be structured-cloneable data.
247 * @param name - The optional name of the task function to execute. If not specified, the default task function will be executed.
248 * @param transferList - An optional array of transferable objects to transfer ownership of. Ownership of the transferred objects is given to the pool's worker_threads worker and they should not be used in the main thread afterwards.
249 * @returns Promise that will be fulfilled when the task is completed.
254 transferList
?: TransferListItem
[]
255 ) => Promise
<Response
>
257 * Starts the minimum number of workers in this pool.
259 readonly start
: () => void
261 * Terminates all workers in this pool.
263 readonly destroy
: () => Promise
<void>
265 * Whether the specified task function exists in this pool.
267 * @param name - The name of the task function.
268 * @returns `true` if the task function exists, `false` otherwise.
270 readonly hasTaskFunction
: (name
: string) => boolean
272 * Adds a task function to this pool.
273 * If a task function with the same name already exists, it will be overwritten.
275 * @param name - The name of the task function.
276 * @param fn - The task function.
277 * @returns `true` if the task function was added, `false` otherwise.
278 * @throws {@link https://nodejs.org/api/errors.html#class-typeerror} If the `name` parameter is not a string or an empty string.
279 * @throws {@link https://nodejs.org/api/errors.html#class-typeerror} If the `fn` parameter is not a function.
281 readonly addTaskFunction
: (
283 fn
: TaskFunction
<Data
, Response
>
284 ) => Promise
<boolean>
286 * Removes a task function from this pool.
288 * @param name - The name of the task function.
289 * @returns `true` if the task function was removed, `false` otherwise.
291 readonly removeTaskFunction
: (name
: string) => Promise
<boolean>
293 * Lists the names of task function available in this pool.
295 * @returns The names of task function available in this pool.
297 readonly listTaskFunctionNames
: () => string[]
299 * Sets the default task function in this pool.
301 * @param name - The name of the task function.
302 * @returns `true` if the default task function was set, `false` otherwise.
304 readonly setDefaultTaskFunction
: (name
: string) => Promise
<boolean>
306 * Sets the worker choice strategy in this pool.
308 * @param workerChoiceStrategy - The worker choice strategy.
309 * @param workerChoiceStrategyOptions - The worker choice strategy options.
311 readonly setWorkerChoiceStrategy
: (
312 workerChoiceStrategy
: WorkerChoiceStrategy
,
313 workerChoiceStrategyOptions
?: WorkerChoiceStrategyOptions
316 * Sets the worker choice strategy options in this pool.
318 * @param workerChoiceStrategyOptions - The worker choice strategy options.
320 readonly setWorkerChoiceStrategyOptions
: (
321 workerChoiceStrategyOptions
: WorkerChoiceStrategyOptions
324 * Enables/disables the worker node tasks queue in this pool.
326 * @param enable - Whether to enable or disable the worker node tasks queue.
327 * @param tasksQueueOptions - The worker node tasks queue options.
329 readonly enableTasksQueue
: (
331 tasksQueueOptions
?: TasksQueueOptions
334 * Sets the worker node tasks queue options in this pool.
336 * @param tasksQueueOptions - The worker node tasks queue options.
338 readonly setTasksQueueOptions
: (tasksQueueOptions
: TasksQueueOptions
) => void