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