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