refactor: untangle utils purpose
[poolifier.git] / src / pools / pool.ts
CommitLineData
51280f9b 1import type { TransferListItem, WorkerOptions } from 'node:worker_threads'
f80125ca 2import type { EventEmitterAsyncResource } from 'node:events'
c3719753 3import type { ClusterSettings } from 'node:cluster'
d35e5717 4import type { TaskFunction } from '../worker/task-functions.js'
bdaf31cd
JB
5import type {
6 ErrorHandler,
7 ExitHandler,
50e66724 8 IWorker,
4b628b48 9 IWorkerNode,
bdaf31cd 10 MessageHandler,
c4855468 11 OnlineHandler,
4b628b48 12 WorkerType
d35e5717 13} from './worker.js'
da309861
JB
14import type {
15 WorkerChoiceStrategy,
16 WorkerChoiceStrategyOptions
d35e5717 17} from './selection-strategies/selection-strategies-types.js'
bdaf31cd 18
c4855468 19/**
6b27d407 20 * Enumeration of pool types.
c4855468 21 */
6b27d407 22export const PoolTypes = Object.freeze({
c4855468
JB
23 /**
24 * Fixed pool type.
25 */
6b27d407 26 fixed: 'fixed',
c4855468
JB
27 /**
28 * Dynamic pool type.
29 */
6b27d407
JB
30 dynamic: 'dynamic'
31} as const)
32
33/**
34 * Pool type.
35 */
36export type PoolType = keyof typeof PoolTypes
c4855468 37
aee46736
JB
38/**
39 * Enumeration of pool events.
40 */
41export const PoolEvents = Object.freeze({
2431bdb4 42 ready: 'ready',
1f68cede 43 busy: 'busy',
ef3891a3 44 full: 'full',
8e8d9101 45 empty: 'empty',
ef3891a3 46 destroy: 'destroy',
91ee39ed 47 error: 'error',
671d5154
JB
48 taskError: 'taskError',
49 backPressure: 'backPressure'
aee46736
JB
50} as const)
51
52/**
53 * Pool event.
54 */
55export type PoolEvent = keyof typeof PoolEvents
56
6b27d407
JB
57/**
58 * Pool information.
59 */
60export interface PoolInfo {
4b628b48
JB
61 readonly version: string
62 readonly type: PoolType
63 readonly worker: WorkerType
47352846 64 readonly started: boolean
2431bdb4
JB
65 readonly ready: boolean
66 readonly strategy: WorkerChoiceStrategy
0e8587d2 67 readonly strategyRetries: number
4b628b48
JB
68 readonly minSize: number
69 readonly maxSize: number
aa9eede8 70 /** Pool utilization. */
4b628b48 71 readonly utilization?: number
01a59f3c 72 /** Pool total worker nodes. */
4b628b48 73 readonly workerNodes: number
5eb72b9e
JB
74 /** Pool stealing worker nodes. */
75 readonly stealingWorkerNodes?: number
01a59f3c 76 /** Pool idle worker nodes. */
4b628b48 77 readonly idleWorkerNodes: number
01a59f3c 78 /** Pool busy worker nodes. */
4b628b48
JB
79 readonly busyWorkerNodes: number
80 readonly executedTasks: number
81 readonly executingTasks: number
daf86646
JB
82 readonly queuedTasks?: number
83 readonly maxQueuedTasks?: number
a1763c54 84 readonly backPressure?: boolean
68cbdc84 85 readonly stolenTasks?: number
4b628b48
JB
86 readonly failedTasks: number
87 readonly runTime?: {
88 readonly minimum: number
89 readonly maximum: number
3baa0837 90 readonly average?: number
4b628b48 91 readonly median?: number
1dcf8b7b 92 }
4b628b48
JB
93 readonly waitTime?: {
94 readonly minimum: number
95 readonly maximum: number
3baa0837 96 readonly average?: number
4b628b48 97 readonly median?: number
1dcf8b7b 98 }
6b27d407
JB
99}
100
7171d33f 101/**
20c6f652 102 * Worker node tasks queue options.
7171d33f
JB
103 */
104export interface TasksQueueOptions {
105 /**
20c6f652
JB
106 * Maximum tasks queue size per worker node flagging it as back pressured.
107 *
108 * @defaultValue (pool maximum size)^2
109 */
ff3f866a 110 readonly size?: number
20c6f652
JB
111 /**
112 * Maximum number of tasks that can be executed concurrently on a worker node.
7171d33f
JB
113 *
114 * @defaultValue 1
115 */
eb7bf744 116 readonly concurrency?: number
47352846 117 /**
65542a35 118 * Whether to enable task stealing on idle.
47352846
JB
119 *
120 * @defaultValue true
121 */
dbd73092 122 readonly taskStealing?: boolean
47352846 123 /**
af98b972 124 * Whether to enable tasks stealing under back pressure.
47352846
JB
125 *
126 * @defaultValue true
127 */
128 readonly tasksStealingOnBackPressure?: boolean
32b141fd
JB
129 /**
130 * Queued tasks finished timeout in milliseconds at worker node termination.
131 *
653eba19 132 * @defaultValue 2000
32b141fd
JB
133 */
134 readonly tasksFinishedTimeout?: number
7171d33f
JB
135}
136
bdaf31cd
JB
137/**
138 * Options for a poolifier pool.
c319c66b 139 *
d480d708 140 * @typeParam Worker - Type of worker.
bdaf31cd 141 */
50e66724 142export interface PoolOptions<Worker extends IWorker> {
fd04474e
JB
143 /**
144 * A function that will listen for online event on each worker.
68f1f531
JB
145 *
146 * @defaultValue `() => {}`
fd04474e
JB
147 */
148 onlineHandler?: OnlineHandler<Worker>
bdaf31cd
JB
149 /**
150 * A function that will listen for message event on each worker.
68f1f531
JB
151 *
152 * @defaultValue `() => {}`
bdaf31cd
JB
153 */
154 messageHandler?: MessageHandler<Worker>
155 /**
156 * A function that will listen for error event on each worker.
68f1f531
JB
157 *
158 * @defaultValue `() => {}`
bdaf31cd
JB
159 */
160 errorHandler?: ErrorHandler<Worker>
bdaf31cd
JB
161 /**
162 * A function that will listen for exit event on each worker.
68f1f531
JB
163 *
164 * @defaultValue `() => {}`
bdaf31cd
JB
165 */
166 exitHandler?: ExitHandler<Worker>
47352846
JB
167 /**
168 * Whether to start the minimum number of workers at pool initialization.
169 *
8ff61e33 170 * @defaultValue true
47352846
JB
171 */
172 startWorkers?: boolean
bdaf31cd 173 /**
46e857ca 174 * The worker choice strategy to use in this pool.
d29bce7c 175 *
95ec6006 176 * @defaultValue WorkerChoiceStrategies.ROUND_ROBIN
bdaf31cd
JB
177 */
178 workerChoiceStrategy?: WorkerChoiceStrategy
da309861
JB
179 /**
180 * The worker choice strategy options.
181 */
182 workerChoiceStrategyOptions?: WorkerChoiceStrategyOptions
1f68cede
JB
183 /**
184 * Restart worker on error.
185 */
186 restartWorkerOnError?: boolean
bdaf31cd 187 /**
b5604034 188 * Pool events integrated with async resource emission.
bdaf31cd 189 *
38e795c1 190 * @defaultValue true
bdaf31cd
JB
191 */
192 enableEvents?: boolean
ff733df7 193 /**
20c6f652 194 * Pool worker node tasks queue.
ff733df7 195 *
ff733df7
JB
196 * @defaultValue false
197 */
198 enableTasksQueue?: boolean
7171d33f 199 /**
20c6f652 200 * Pool worker node tasks queue options.
7171d33f
JB
201 */
202 tasksQueueOptions?: TasksQueueOptions
c3719753
JB
203 /**
204 * Worker options.
205 *
206 * @see https://nodejs.org/api/worker_threads.html#new-workerfilename-options
207 */
208 workerOptions?: WorkerOptions
209 /**
210 * Key/value pairs to add to worker process environment.
211 *
212 * @see https://nodejs.org/api/cluster.html#cluster_cluster_fork_env
213 */
214 env?: Record<string, unknown>
215 /**
216 * Cluster settings.
217 *
218 * @see https://nodejs.org/api/cluster.html#cluster_cluster_settings
219 */
220 settings?: ClusterSettings
bdaf31cd 221}
a35560ba 222
729c563d
S
223/**
224 * Contract definition for a poolifier pool.
225 *
c4855468 226 * @typeParam Worker - Type of worker which manages this pool.
e102732c
JB
227 * @typeParam Data - Type of data sent to the worker. This can only be structured-cloneable data.
228 * @typeParam Response - Type of execution response. This can only be structured-cloneable data.
729c563d 229 */
c4855468
JB
230export interface IPool<
231 Worker extends IWorker,
232 Data = unknown,
233 Response = unknown
234> {
08f3f44c 235 /**
6b27d407 236 * Pool information.
08f3f44c 237 */
6b27d407 238 readonly info: PoolInfo
c4855468
JB
239 /**
240 * Pool worker nodes.
9768f49f
JB
241 *
242 * @internal
c4855468 243 */
4b628b48 244 readonly workerNodes: Array<IWorkerNode<Worker, Data>>
b4904890 245 /**
b5794753 246 * Event emitter integrated with async resource on which events can be listened to.
b5604034 247 * The async tracking tooling identifier is `poolifier:<PoolType>-<WorkerType>-pool`.
b4904890
JB
248 *
249 * Events that can currently be listened to:
250 *
8e8d9101 251 * - `'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.
a9780ad2 252 * - `'busy'`: Emitted when the number of workers created in the pool has reached the maximum size expected and are executing concurrently their tasks quota.
ef3891a3 253 * - `'full'`: Emitted when the pool is dynamic and the number of workers created has reached the maximum size expected.
8e8d9101 254 * - `'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.
033f1776 255 * - `'destroy'`: Emitted when the pool is destroyed.
91ee39ed
JB
256 * - `'error'`: Emitted when an uncaught error occurs.
257 * - `'taskError'`: Emitted when an error occurs while executing a task.
d92f3ddf 258 * - `'backPressure'`: Emitted when all worker nodes have back pressure (i.e. their tasks queue is full: queue size \>= maximum queue size).
b4904890 259 */
f80125ca 260 readonly emitter?: EventEmitterAsyncResource
729c563d 261 /**
61aa11a6 262 * Executes the specified function in the worker constructor with the task data input parameter.
729c563d 263 *
7d91a8cd
JB
264 * @param data - The optional task input data for the specified task function. This can only be structured-cloneable data.
265 * @param name - The optional name of the task function to execute. If not specified, the default task function will be executed.
7379799c 266 * @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.
ef41a6e6 267 * @returns Promise that will be fulfilled when the task is completed.
729c563d 268 */
7d91a8cd
JB
269 readonly execute: (
270 data?: Data,
271 name?: string,
272 transferList?: TransferListItem[]
273 ) => Promise<Response>
47352846
JB
274 /**
275 * Starts the minimum number of workers in this pool.
276 */
277 readonly start: () => void
280c2a77 278 /**
aa9eede8 279 * Terminates all workers in this pool.
280c2a77 280 */
4b628b48 281 readonly destroy: () => Promise<void>
6703b9f4
JB
282 /**
283 * Whether the specified task function exists in this pool.
284 *
285 * @param name - The name of the task function.
286 * @returns `true` if the task function exists, `false` otherwise.
287 */
288 readonly hasTaskFunction: (name: string) => boolean
289 /**
290 * Adds a task function to this pool.
291 * If a task function with the same name already exists, it will be overwritten.
292 *
293 * @param name - The name of the task function.
3feeab69 294 * @param fn - The task function.
6703b9f4 295 * @returns `true` if the task function was added, `false` otherwise.
cf87987c
JB
296 * @throws {@link https://nodejs.org/api/errors.html#class-typeerror} If the `name` parameter is not a string or an empty string.
297 * @throws {@link https://nodejs.org/api/errors.html#class-typeerror} If the `fn` parameter is not a function.
6703b9f4
JB
298 */
299 readonly addTaskFunction: (
300 name: string,
3feeab69 301 fn: TaskFunction<Data, Response>
e81c38f2 302 ) => Promise<boolean>
6703b9f4
JB
303 /**
304 * Removes a task function from this pool.
305 *
306 * @param name - The name of the task function.
307 * @returns `true` if the task function was removed, `false` otherwise.
308 */
e81c38f2 309 readonly removeTaskFunction: (name: string) => Promise<boolean>
90d7d101
JB
310 /**
311 * Lists the names of task function available in this pool.
312 *
313 * @returns The names of task function available in this pool.
314 */
6703b9f4
JB
315 readonly listTaskFunctionNames: () => string[]
316 /**
317 * Sets the default task function in this pool.
318 *
319 * @param name - The name of the task function.
320 * @returns `true` if the default task function was set, `false` otherwise.
321 */
e81c38f2 322 readonly setDefaultTaskFunction: (name: string) => Promise<boolean>
a35560ba 323 /**
bdede008 324 * Sets the worker choice strategy in this pool.
a35560ba 325 *
38e795c1 326 * @param workerChoiceStrategy - The worker choice strategy.
59219cbb 327 * @param workerChoiceStrategyOptions - The worker choice strategy options.
a35560ba 328 */
4b628b48 329 readonly setWorkerChoiceStrategy: (
59219cbb
JB
330 workerChoiceStrategy: WorkerChoiceStrategy,
331 workerChoiceStrategyOptions?: WorkerChoiceStrategyOptions
332 ) => void
a20f0ba5
JB
333 /**
334 * Sets the worker choice strategy options in this pool.
335 *
336 * @param workerChoiceStrategyOptions - The worker choice strategy options.
337 */
4b628b48 338 readonly setWorkerChoiceStrategyOptions: (
a20f0ba5
JB
339 workerChoiceStrategyOptions: WorkerChoiceStrategyOptions
340 ) => void
341 /**
20c6f652 342 * Enables/disables the worker node tasks queue in this pool.
a20f0ba5 343 *
20c6f652
JB
344 * @param enable - Whether to enable or disable the worker node tasks queue.
345 * @param tasksQueueOptions - The worker node tasks queue options.
a20f0ba5 346 */
4b628b48 347 readonly enableTasksQueue: (
8f52842f
JB
348 enable: boolean,
349 tasksQueueOptions?: TasksQueueOptions
350 ) => void
a20f0ba5 351 /**
20c6f652 352 * Sets the worker node tasks queue options in this pool.
a20f0ba5 353 *
20c6f652 354 * @param tasksQueueOptions - The worker node tasks queue options.
a20f0ba5 355 */
4b628b48 356 readonly setTasksQueueOptions: (tasksQueueOptions: TasksQueueOptions) => void
c97c7edb 357}