1 import type { ClusterSettings
} from
'node:cluster'
2 import type { EventEmitterAsyncResource
} from
'node:events'
3 import type { TransferListItem
, WorkerOptions
} from
'node:worker_threads'
5 import type { TaskFunctionProperties
} from
'../utility-types.js'
9 } from
'../worker/task-functions.js'
12 WorkerChoiceStrategyOptions
13 } from
'./selection-strategies/selection-strategies-types.js'
25 * Enumeration of pool types.
27 export const PoolTypes
: Readonly
<{
44 export type PoolType
= keyof
typeof PoolTypes
47 * Enumeration of pool events.
49 export const PoolEvents
: Readonly
<{
56 taskError
: 'taskError'
57 backPressure
: 'backPressure'
65 taskError
: 'taskError',
66 backPressure
: 'backPressure'
72 export type PoolEvent
= keyof
typeof PoolEvents
77 export interface PoolInfo
{
78 readonly version
: string
79 readonly type: PoolType
80 readonly worker
: WorkerType
81 readonly started
: boolean
82 readonly ready
: boolean
83 readonly defaultStrategy
: WorkerChoiceStrategy
84 readonly strategyRetries
: number
85 readonly minSize
: number
86 readonly maxSize
: number
87 /** Pool utilization. */
88 readonly utilization
?: number
89 /** Pool total worker nodes. */
90 readonly workerNodes
: number
91 /** Pool stealing worker nodes. */
92 readonly stealingWorkerNodes
?: number
93 /** Pool idle worker nodes. */
94 readonly idleWorkerNodes
: number
95 /** Pool busy worker nodes. */
96 readonly busyWorkerNodes
: number
97 readonly executedTasks
: number
98 readonly executingTasks
: number
99 readonly queuedTasks
?: number
100 readonly maxQueuedTasks
?: number
101 readonly backPressure
?: boolean
102 readonly stolenTasks
?: number
103 readonly failedTasks
: number
105 readonly minimum
: number
106 readonly maximum
: number
107 readonly average
?: number
108 readonly median
?: number
110 readonly waitTime
?: {
111 readonly minimum
: number
112 readonly maximum
: number
113 readonly average
?: number
114 readonly median
?: number
118 readonly minimum
: number
119 readonly maximum
: number
120 readonly average
?: number
121 readonly median
?: number
124 readonly minimum
: number
125 readonly maximum
: number
126 readonly average
?: number
127 readonly median
?: number
130 readonly average
?: number
131 readonly median
?: number
137 * Worker node tasks queue options.
139 export interface TasksQueueOptions
{
141 * Maximum tasks queue size per worker node flagging it as back pressured.
143 * @defaultValue (pool maximum size)^2
145 readonly size
?: number
147 * Maximum number of tasks that can be executed concurrently on a worker node.
151 readonly concurrency
?: number
153 * Whether to enable task stealing on idle.
157 readonly taskStealing
?: boolean
159 * Whether to enable tasks stealing under back pressure.
161 * @defaultValue false
163 readonly tasksStealingOnBackPressure
?: boolean
165 * Queued tasks finished timeout in milliseconds at worker node termination.
169 readonly tasksFinishedTimeout
?: number
173 * Options for a poolifier pool.
175 * @typeParam Worker - Type of worker.
177 export interface PoolOptions
<Worker
extends IWorker
> {
179 * A function that will listen for online event on each worker.
181 * @defaultValue `() => {}`
183 onlineHandler
?: OnlineHandler
<Worker
>
185 * A function that will listen for message event on each worker.
187 * @defaultValue `() => {}`
189 messageHandler
?: MessageHandler
<Worker
>
191 * A function that will listen for error event on each worker.
193 * @defaultValue `() => {}`
195 errorHandler
?: ErrorHandler
<Worker
>
197 * A function that will listen for exit event on each worker.
199 * @defaultValue `() => {}`
201 exitHandler
?: ExitHandler
<Worker
>
203 * Whether to start the minimum number of workers at pool initialization.
207 startWorkers
?: boolean
209 * The default worker choice strategy to use in this pool.
211 * @defaultValue WorkerChoiceStrategies.ROUND_ROBIN
213 workerChoiceStrategy
?: WorkerChoiceStrategy
215 * The worker choice strategy options.
217 workerChoiceStrategyOptions
?: WorkerChoiceStrategyOptions
219 * Restart worker on error.
221 restartWorkerOnError
?: boolean
223 * Pool events integrated with async resource emission.
227 enableEvents
?: boolean
229 * Pool worker node tasks queue.
231 * @defaultValue false
233 enableTasksQueue
?: boolean
235 * Pool worker node tasks queue options.
237 tasksQueueOptions
?: TasksQueueOptions
241 * @see https://nodejs.org/api/worker_threads.html#new-workerfilename-options
243 workerOptions
?: WorkerOptions
245 * Key/value pairs to add to worker process environment.
247 * @see https://nodejs.org/api/cluster.html#cluster_cluster_fork_env
249 env
?: Record
<string, unknown
>
253 * @see https://nodejs.org/api/cluster.html#cluster_cluster_settings
255 settings
?: ClusterSettings
259 * Contract definition for a poolifier pool.
261 * @typeParam Worker - Type of worker which manages this pool.
262 * @typeParam Data - Type of data sent to the worker. This can only be structured-cloneable data.
263 * @typeParam Response - Type of execution response. This can only be structured-cloneable data.
265 export interface IPool
<
266 Worker
extends IWorker
,
273 readonly info
: PoolInfo
279 readonly workerNodes
: Array<IWorkerNode
<Worker
, Data
>>
281 * Pool event emitter integrated with async resource.
282 * The async tracking tooling identifier is `poolifier:<PoolType>-<WorkerType>-pool`.
284 * Events that can currently be listened to:
286 * - `'ready'`: Emitted when the number of workers created in the pool has reached the minimum size expected and are ready. If the pool is dynamic with a minimum number of workers is set to zero, this event is emitted when at least one dynamic worker is ready.
287 * - `'busy'`: Emitted when the number of workers created in the pool has reached the maximum size expected and are executing concurrently their tasks quota.
288 * - `'full'`: Emitted when the pool is dynamic and the number of workers created has reached the maximum size expected.
289 * - `'empty'`: Emitted when the pool is dynamic with a minimum number of workers set to zero and the number of workers has reached the minimum size expected.
290 * - `'destroy'`: Emitted when the pool is destroyed.
291 * - `'error'`: Emitted when an uncaught error occurs.
292 * - `'taskError'`: Emitted when an error occurs while executing a task.
293 * - `'backPressure'`: Emitted when all worker nodes have back pressure (i.e. their tasks queue is full: queue size \>= maximum queue size).
295 readonly emitter
?: EventEmitterAsyncResource
297 * Executes the specified function in the worker constructor with the task data input parameter.
299 * @param data - The optional task input data for the specified task function. This can only be structured-cloneable data.
300 * @param name - The optional name of the task function to execute. If not specified, the default task function will be executed.
301 * @param transferList - An optional array of transferable objects to transfer ownership of. Ownership of the transferred objects is given to the chosen pool's worker_threads worker and they should not be used in the main thread afterwards.
302 * @returns Promise that will be fulfilled when the task is completed.
307 transferList
?: readonly TransferListItem
[]
308 ) => Promise
<Response
>
310 * Starts the minimum number of workers in this pool.
312 readonly start
: () => void
314 * Terminates all workers in this pool.
316 readonly destroy
: () => Promise
<void>
318 * Whether the specified task function exists in this pool.
320 * @param name - The name of the task function.
321 * @returns `true` if the task function exists, `false` otherwise.
323 readonly hasTaskFunction
: (name
: string) => boolean
325 * Adds a task function to this pool.
326 * If a task function with the same name already exists, it will be overwritten.
328 * @param name - The name of the task function.
329 * @param fn - The task function.
330 * @returns `true` if the task function was added, `false` otherwise.
331 * @throws {@link https://nodejs.org/api/errors.html#class-typeerror} If the `name` parameter is not a string or an empty string.
332 * @throws {@link https://nodejs.org/api/errors.html#class-typeerror} If the `fn` parameter is not a function or task function object.
334 readonly addTaskFunction
: (
336 fn
: TaskFunction
<Data
, Response
> | TaskFunctionObject
<Data
, Response
>
337 ) => Promise
<boolean>
339 * Removes a task function from this pool.
341 * @param name - The name of the task function.
342 * @returns `true` if the task function was removed, `false` otherwise.
344 readonly removeTaskFunction
: (name
: string) => Promise
<boolean>
346 * Lists the properties of task functions available in this pool.
348 * @returns The properties of task functions available in this pool.
350 readonly listTaskFunctionsProperties
: () => TaskFunctionProperties
[]
352 * Sets the default task function in this pool.
354 * @param name - The name of the task function.
355 * @returns `true` if the default task function was set, `false` otherwise.
357 readonly setDefaultTaskFunction
: (name
: string) => Promise
<boolean>
359 * Sets the default worker choice strategy in this pool.
361 * @param workerChoiceStrategy - The default worker choice strategy.
362 * @param workerChoiceStrategyOptions - The worker choice strategy options.
364 readonly setWorkerChoiceStrategy
: (
365 workerChoiceStrategy
: WorkerChoiceStrategy
,
366 workerChoiceStrategyOptions
?: WorkerChoiceStrategyOptions
369 * Sets the worker choice strategy options in this pool.
371 * @param workerChoiceStrategyOptions - The worker choice strategy options.
372 * @returns `true` if the worker choice strategy options were set, `false` otherwise.
374 readonly setWorkerChoiceStrategyOptions
: (
375 workerChoiceStrategyOptions
: WorkerChoiceStrategyOptions
378 * Enables/disables the worker node tasks queue in this pool.
380 * @param enable - Whether to enable or disable the worker node tasks queue.
381 * @param tasksQueueOptions - The worker node tasks queue options.
383 readonly enableTasksQueue
: (
385 tasksQueueOptions
?: TasksQueueOptions
388 * Sets the worker node tasks queue options in this pool.
390 * @param tasksQueueOptions - The worker node tasks queue options.
392 readonly setTasksQueueOptions
: (tasksQueueOptions
: TasksQueueOptions
) => void