build(deps-dev): apply updates
[poolifier.git] / src / pools / abstract-pool.ts
1 import { AsyncResource } from 'node:async_hooks'
2 import { randomUUID } from 'node:crypto'
3 import { EventEmitterAsyncResource } from 'node:events'
4 import { performance } from 'node:perf_hooks'
5 import type { TransferListItem } from 'node:worker_threads'
6
7 import { defaultBucketSize } from '../priority-queue.js'
8 import type {
9 MessageValue,
10 PromiseResponseWrapper,
11 Task,
12 TaskFunctionProperties,
13 } from '../utility-types.js'
14 import {
15 average,
16 buildTaskFunctionProperties,
17 DEFAULT_TASK_NAME,
18 EMPTY_FUNCTION,
19 exponentialDelay,
20 isKillBehavior,
21 isPlainObject,
22 max,
23 median,
24 min,
25 round,
26 sleep,
27 } from '../utils.js'
28 import type {
29 TaskFunction,
30 TaskFunctionObject,
31 } from '../worker/task-functions.js'
32 import { KillBehaviors } from '../worker/worker-options.js'
33 import {
34 type IPool,
35 PoolEvents,
36 type PoolInfo,
37 type PoolOptions,
38 type PoolType,
39 PoolTypes,
40 type TasksQueueOptions,
41 } from './pool.js'
42 import {
43 Measurements,
44 WorkerChoiceStrategies,
45 type WorkerChoiceStrategy,
46 type WorkerChoiceStrategyOptions,
47 } from './selection-strategies/selection-strategies-types.js'
48 import { WorkerChoiceStrategiesContext } from './selection-strategies/worker-choice-strategies-context.js'
49 import {
50 checkFilePath,
51 checkValidPriority,
52 checkValidTasksQueueOptions,
53 checkValidWorkerChoiceStrategy,
54 getDefaultTasksQueueOptions,
55 updateEluWorkerUsage,
56 updateRunTimeWorkerUsage,
57 updateTaskStatisticsWorkerUsage,
58 updateWaitTimeWorkerUsage,
59 waitWorkerNodeEvents,
60 } from './utils.js'
61 import { version } from './version.js'
62 import type {
63 IWorker,
64 IWorkerNode,
65 WorkerInfo,
66 WorkerNodeEventDetail,
67 WorkerType,
68 } from './worker.js'
69 import { WorkerNode } from './worker-node.js'
70
71 /**
72 * Base class that implements some shared logic for all poolifier pools.
73 * @typeParam Worker - Type of worker which manages this pool.
74 * @typeParam Data - Type of data sent to the worker. This can only be structured-cloneable data.
75 * @typeParam Response - Type of execution response. This can only be structured-cloneable data.
76 */
77 export abstract class AbstractPool<
78 Worker extends IWorker,
79 Data = unknown,
80 Response = unknown
81 > implements IPool<Worker, Data, Response> {
82 /** @inheritDoc */
83 public readonly workerNodes: IWorkerNode<Worker, Data>[] = []
84
85 /** @inheritDoc */
86 public emitter?: EventEmitterAsyncResource
87
88 /**
89 * The task execution response promise map:
90 * - `key`: The message id of each submitted task.
91 * - `value`: An object that contains task's worker node key, execution response promise resolve and reject callbacks, async resource.
92 *
93 * When we receive a message from the worker, we get a map entry with the promise resolve/reject bound to the message id.
94 */
95 protected promiseResponseMap: Map<
96 `${string}-${string}-${string}-${string}-${string}`,
97 PromiseResponseWrapper<Response>
98 > = new Map<
99 `${string}-${string}-${string}-${string}-${string}`,
100 PromiseResponseWrapper<Response>
101 >()
102
103 /**
104 * Worker choice strategies context referencing worker choice algorithms implementation.
105 */
106 protected workerChoiceStrategiesContext?: WorkerChoiceStrategiesContext<
107 Worker,
108 Data,
109 Response
110 >
111
112 /**
113 * The task functions added at runtime map:
114 * - `key`: The task function name.
115 * - `value`: The task function object.
116 */
117 private readonly taskFunctions: Map<
118 string,
119 TaskFunctionObject<Data, Response>
120 >
121
122 /**
123 * Whether the pool is started or not.
124 */
125 private started: boolean
126 /**
127 * Whether the pool is starting or not.
128 */
129 private starting: boolean
130 /**
131 * Whether the pool is destroying or not.
132 */
133 private destroying: boolean
134 /**
135 * Whether the minimum number of workers is starting or not.
136 */
137 private startingMinimumNumberOfWorkers: boolean
138 /**
139 * Whether the pool ready event has been emitted or not.
140 */
141 private readyEventEmitted: boolean
142 /**
143 * The start timestamp of the pool.
144 */
145 private startTimestamp?: number
146
147 /**
148 * Constructs a new poolifier pool.
149 * @param minimumNumberOfWorkers - Minimum number of workers that this pool manages.
150 * @param filePath - Path to the worker file.
151 * @param opts - Options for the pool.
152 * @param maximumNumberOfWorkers - Maximum number of workers that this pool manages.
153 */
154 public constructor (
155 protected readonly minimumNumberOfWorkers: number,
156 protected readonly filePath: string,
157 protected readonly opts: PoolOptions<Worker>,
158 protected readonly maximumNumberOfWorkers?: number
159 ) {
160 if (!this.isMain()) {
161 throw new Error(
162 'Cannot start a pool from a worker with the same type as the pool'
163 )
164 }
165 this.checkPoolType()
166 checkFilePath(this.filePath)
167 this.checkMinimumNumberOfWorkers(this.minimumNumberOfWorkers)
168 this.checkPoolOptions(this.opts)
169
170 this.chooseWorkerNode = this.chooseWorkerNode.bind(this)
171 this.executeTask = this.executeTask.bind(this)
172 this.enqueueTask = this.enqueueTask.bind(this)
173
174 if (this.opts.enableEvents === true) {
175 this.initEventEmitter()
176 }
177 this.workerChoiceStrategiesContext = new WorkerChoiceStrategiesContext<
178 Worker,
179 Data,
180 Response
181 >(
182 this,
183 // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
184 [this.opts.workerChoiceStrategy!],
185 this.opts.workerChoiceStrategyOptions
186 )
187
188 this.setupHook()
189
190 this.taskFunctions = new Map<string, TaskFunctionObject<Data, Response>>()
191
192 this.started = false
193 this.starting = false
194 this.destroying = false
195 this.readyEventEmitted = false
196 this.startingMinimumNumberOfWorkers = false
197 if (this.opts.startWorkers === true) {
198 this.start()
199 }
200 }
201
202 private checkPoolType (): void {
203 if (this.type === PoolTypes.fixed && this.maximumNumberOfWorkers != null) {
204 throw new Error(
205 'Cannot instantiate a fixed pool with a maximum number of workers specified at initialization'
206 )
207 }
208 }
209
210 private checkMinimumNumberOfWorkers (
211 minimumNumberOfWorkers: number | undefined
212 ): void {
213 if (minimumNumberOfWorkers == null) {
214 throw new Error(
215 'Cannot instantiate a pool without specifying the number of workers'
216 )
217 } else if (!Number.isSafeInteger(minimumNumberOfWorkers)) {
218 throw new TypeError(
219 'Cannot instantiate a pool with a non safe integer number of workers'
220 )
221 } else if (minimumNumberOfWorkers < 0) {
222 throw new RangeError(
223 'Cannot instantiate a pool with a negative number of workers'
224 )
225 } else if (this.type === PoolTypes.fixed && minimumNumberOfWorkers === 0) {
226 throw new RangeError('Cannot instantiate a fixed pool with zero worker')
227 }
228 }
229
230 private checkPoolOptions (opts: PoolOptions<Worker>): void {
231 if (isPlainObject(opts)) {
232 this.opts.startWorkers = opts.startWorkers ?? true
233 checkValidWorkerChoiceStrategy(opts.workerChoiceStrategy)
234 this.opts.workerChoiceStrategy =
235 opts.workerChoiceStrategy ?? WorkerChoiceStrategies.ROUND_ROBIN
236 this.checkValidWorkerChoiceStrategyOptions(
237 opts.workerChoiceStrategyOptions
238 )
239 if (opts.workerChoiceStrategyOptions != null) {
240 this.opts.workerChoiceStrategyOptions = opts.workerChoiceStrategyOptions
241 }
242 this.opts.restartWorkerOnError = opts.restartWorkerOnError ?? true
243 this.opts.enableEvents = opts.enableEvents ?? true
244 this.opts.enableTasksQueue = opts.enableTasksQueue ?? false
245 if (this.opts.enableTasksQueue) {
246 checkValidTasksQueueOptions(opts.tasksQueueOptions)
247 this.opts.tasksQueueOptions = this.buildTasksQueueOptions(
248 opts.tasksQueueOptions
249 )
250 }
251 } else {
252 throw new TypeError('Invalid pool options: must be a plain object')
253 }
254 }
255
256 private checkValidWorkerChoiceStrategyOptions (
257 workerChoiceStrategyOptions: WorkerChoiceStrategyOptions | undefined
258 ): void {
259 if (
260 workerChoiceStrategyOptions != null &&
261 !isPlainObject(workerChoiceStrategyOptions)
262 ) {
263 throw new TypeError(
264 'Invalid worker choice strategy options: must be a plain object'
265 )
266 }
267 if (
268 workerChoiceStrategyOptions?.weights != null &&
269 Object.keys(workerChoiceStrategyOptions.weights).length !==
270 (this.maximumNumberOfWorkers ?? this.minimumNumberOfWorkers)
271 ) {
272 throw new Error(
273 'Invalid worker choice strategy options: must have a weight for each worker node'
274 )
275 }
276 if (
277 workerChoiceStrategyOptions?.measurement != null &&
278 !Object.values(Measurements).includes(
279 workerChoiceStrategyOptions.measurement
280 )
281 ) {
282 throw new Error(
283 `Invalid worker choice strategy options: invalid measurement '${workerChoiceStrategyOptions.measurement}'`
284 )
285 }
286 }
287
288 private initEventEmitter (): void {
289 this.emitter = new EventEmitterAsyncResource({
290 name: `poolifier:${this.type}-${this.worker}-pool`,
291 })
292 }
293
294 /** @inheritDoc */
295 public get info (): PoolInfo {
296 return {
297 version,
298 type: this.type,
299 worker: this.worker,
300 started: this.started,
301 ready: this.ready,
302 // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
303 defaultStrategy: this.opts.workerChoiceStrategy!,
304 strategyRetries: this.workerChoiceStrategiesContext?.retriesCount ?? 0,
305 minSize: this.minimumNumberOfWorkers,
306 maxSize: this.maximumNumberOfWorkers ?? this.minimumNumberOfWorkers,
307 ...(this.workerChoiceStrategiesContext?.getTaskStatisticsRequirements()
308 .runTime.aggregate === true &&
309 this.workerChoiceStrategiesContext.getTaskStatisticsRequirements()
310 .waitTime.aggregate && {
311 utilization: round(this.utilization),
312 }),
313 workerNodes: this.workerNodes.length,
314 idleWorkerNodes: this.workerNodes.reduce(
315 (accumulator, workerNode) =>
316 workerNode.usage.tasks.executing === 0
317 ? accumulator + 1
318 : accumulator,
319 0
320 ),
321 ...(this.opts.enableTasksQueue === true && {
322 stealingWorkerNodes: this.workerNodes.reduce(
323 (accumulator, workerNode) =>
324 workerNode.info.stealing ? accumulator + 1 : accumulator,
325 0
326 ),
327 }),
328 busyWorkerNodes: this.workerNodes.reduce(
329 (accumulator, _, workerNodeKey) =>
330 this.isWorkerNodeBusy(workerNodeKey) ? accumulator + 1 : accumulator,
331 0
332 ),
333 executedTasks: this.workerNodes.reduce(
334 (accumulator, workerNode) =>
335 accumulator + workerNode.usage.tasks.executed,
336 0
337 ),
338 executingTasks: this.workerNodes.reduce(
339 (accumulator, workerNode) =>
340 accumulator + workerNode.usage.tasks.executing,
341 0
342 ),
343 ...(this.opts.enableTasksQueue === true && {
344 queuedTasks: this.workerNodes.reduce(
345 (accumulator, workerNode) =>
346 accumulator + workerNode.usage.tasks.queued,
347 0
348 ),
349 }),
350 ...(this.opts.enableTasksQueue === true && {
351 maxQueuedTasks: this.workerNodes.reduce(
352 (accumulator, workerNode) =>
353 accumulator + (workerNode.usage.tasks.maxQueued ?? 0),
354 0
355 ),
356 }),
357 ...(this.opts.enableTasksQueue === true && {
358 backPressure: this.hasBackPressure(),
359 }),
360 ...(this.opts.enableTasksQueue === true && {
361 stolenTasks: this.workerNodes.reduce(
362 (accumulator, workerNode) =>
363 accumulator + workerNode.usage.tasks.stolen,
364 0
365 ),
366 }),
367 failedTasks: this.workerNodes.reduce(
368 (accumulator, workerNode) =>
369 accumulator + workerNode.usage.tasks.failed,
370 0
371 ),
372 ...(this.workerChoiceStrategiesContext?.getTaskStatisticsRequirements()
373 .runTime.aggregate === true && {
374 runTime: {
375 minimum: round(
376 min(
377 ...this.workerNodes.map(
378 workerNode =>
379 workerNode.usage.runTime.minimum ?? Number.POSITIVE_INFINITY
380 )
381 )
382 ),
383 maximum: round(
384 max(
385 ...this.workerNodes.map(
386 workerNode =>
387 workerNode.usage.runTime.maximum ?? Number.NEGATIVE_INFINITY
388 )
389 )
390 ),
391 ...(this.workerChoiceStrategiesContext.getTaskStatisticsRequirements()
392 .runTime.average && {
393 average: round(
394 average(
395 this.workerNodes.reduce<number[]>(
396 (accumulator, workerNode) =>
397 accumulator.concat(
398 workerNode.usage.runTime.history.toArray()
399 ),
400 []
401 )
402 )
403 ),
404 }),
405 ...(this.workerChoiceStrategiesContext.getTaskStatisticsRequirements()
406 .runTime.median && {
407 median: round(
408 median(
409 this.workerNodes.reduce<number[]>(
410 (accumulator, workerNode) =>
411 accumulator.concat(
412 workerNode.usage.runTime.history.toArray()
413 ),
414 []
415 )
416 )
417 ),
418 }),
419 },
420 }),
421 ...(this.workerChoiceStrategiesContext?.getTaskStatisticsRequirements()
422 .waitTime.aggregate === true && {
423 waitTime: {
424 minimum: round(
425 min(
426 ...this.workerNodes.map(
427 workerNode =>
428 workerNode.usage.waitTime.minimum ?? Number.POSITIVE_INFINITY
429 )
430 )
431 ),
432 maximum: round(
433 max(
434 ...this.workerNodes.map(
435 workerNode =>
436 workerNode.usage.waitTime.maximum ?? Number.NEGATIVE_INFINITY
437 )
438 )
439 ),
440 ...(this.workerChoiceStrategiesContext.getTaskStatisticsRequirements()
441 .waitTime.average && {
442 average: round(
443 average(
444 this.workerNodes.reduce<number[]>(
445 (accumulator, workerNode) =>
446 accumulator.concat(
447 workerNode.usage.waitTime.history.toArray()
448 ),
449 []
450 )
451 )
452 ),
453 }),
454 ...(this.workerChoiceStrategiesContext.getTaskStatisticsRequirements()
455 .waitTime.median && {
456 median: round(
457 median(
458 this.workerNodes.reduce<number[]>(
459 (accumulator, workerNode) =>
460 accumulator.concat(
461 workerNode.usage.waitTime.history.toArray()
462 ),
463 []
464 )
465 )
466 ),
467 }),
468 },
469 }),
470 ...(this.workerChoiceStrategiesContext?.getTaskStatisticsRequirements()
471 .elu.aggregate === true && {
472 elu: {
473 idle: {
474 minimum: round(
475 min(
476 ...this.workerNodes.map(
477 workerNode =>
478 workerNode.usage.elu.idle.minimum ??
479 Number.POSITIVE_INFINITY
480 )
481 )
482 ),
483 maximum: round(
484 max(
485 ...this.workerNodes.map(
486 workerNode =>
487 workerNode.usage.elu.idle.maximum ??
488 Number.NEGATIVE_INFINITY
489 )
490 )
491 ),
492 ...(this.workerChoiceStrategiesContext.getTaskStatisticsRequirements()
493 .elu.average && {
494 average: round(
495 average(
496 this.workerNodes.reduce<number[]>(
497 (accumulator, workerNode) =>
498 accumulator.concat(
499 workerNode.usage.elu.idle.history.toArray()
500 ),
501 []
502 )
503 )
504 ),
505 }),
506 ...(this.workerChoiceStrategiesContext.getTaskStatisticsRequirements()
507 .elu.median && {
508 median: round(
509 median(
510 this.workerNodes.reduce<number[]>(
511 (accumulator, workerNode) =>
512 accumulator.concat(
513 workerNode.usage.elu.idle.history.toArray()
514 ),
515 []
516 )
517 )
518 ),
519 }),
520 },
521 active: {
522 minimum: round(
523 min(
524 ...this.workerNodes.map(
525 workerNode =>
526 workerNode.usage.elu.active.minimum ??
527 Number.POSITIVE_INFINITY
528 )
529 )
530 ),
531 maximum: round(
532 max(
533 ...this.workerNodes.map(
534 workerNode =>
535 workerNode.usage.elu.active.maximum ??
536 Number.NEGATIVE_INFINITY
537 )
538 )
539 ),
540 ...(this.workerChoiceStrategiesContext.getTaskStatisticsRequirements()
541 .elu.average && {
542 average: round(
543 average(
544 this.workerNodes.reduce<number[]>(
545 (accumulator, workerNode) =>
546 accumulator.concat(
547 workerNode.usage.elu.active.history.toArray()
548 ),
549 []
550 )
551 )
552 ),
553 }),
554 ...(this.workerChoiceStrategiesContext.getTaskStatisticsRequirements()
555 .elu.median && {
556 median: round(
557 median(
558 this.workerNodes.reduce<number[]>(
559 (accumulator, workerNode) =>
560 accumulator.concat(
561 workerNode.usage.elu.active.history.toArray()
562 ),
563 []
564 )
565 )
566 ),
567 }),
568 },
569 utilization: {
570 average: round(
571 average(
572 this.workerNodes.map(
573 workerNode => workerNode.usage.elu.utilization ?? 0
574 )
575 )
576 ),
577 median: round(
578 median(
579 this.workerNodes.map(
580 workerNode => workerNode.usage.elu.utilization ?? 0
581 )
582 )
583 ),
584 },
585 },
586 }),
587 }
588 }
589
590 /**
591 * The pool readiness boolean status.
592 */
593 private get ready (): boolean {
594 if (this.empty) {
595 return false
596 }
597 return (
598 this.workerNodes.reduce(
599 (accumulator, workerNode) =>
600 !workerNode.info.dynamic && workerNode.info.ready
601 ? accumulator + 1
602 : accumulator,
603 0
604 ) >= this.minimumNumberOfWorkers
605 )
606 }
607
608 /**
609 * The pool emptiness boolean status.
610 */
611 protected get empty (): boolean {
612 return this.minimumNumberOfWorkers === 0 && this.workerNodes.length === 0
613 }
614
615 /**
616 * The approximate pool utilization.
617 * @returns The pool utilization.
618 */
619 private get utilization (): number {
620 if (this.startTimestamp == null) {
621 return 0
622 }
623 const poolTimeCapacity =
624 (performance.now() - this.startTimestamp) *
625 (this.maximumNumberOfWorkers ?? this.minimumNumberOfWorkers)
626 const totalTasksRunTime = this.workerNodes.reduce(
627 (accumulator, workerNode) =>
628 accumulator + (workerNode.usage.runTime.aggregate ?? 0),
629 0
630 )
631 const totalTasksWaitTime = this.workerNodes.reduce(
632 (accumulator, workerNode) =>
633 accumulator + (workerNode.usage.waitTime.aggregate ?? 0),
634 0
635 )
636 return (totalTasksRunTime + totalTasksWaitTime) / poolTimeCapacity
637 }
638
639 /**
640 * The pool type.
641 *
642 * If it is `'dynamic'`, it provides the `max` property.
643 */
644 protected abstract get type (): PoolType
645
646 /**
647 * The worker type.
648 */
649 protected abstract get worker (): WorkerType
650
651 /**
652 * Checks if the worker id sent in the received message from a worker is valid.
653 * @param message - The received message.
654 * @throws {@link https://nodejs.org/api/errors.html#class-error} If the worker id is invalid.
655 */
656 private checkMessageWorkerId (message: MessageValue<Data | Response>): void {
657 if (message.workerId == null) {
658 throw new Error('Worker message received without worker id')
659 } else if (this.getWorkerNodeKeyByWorkerId(message.workerId) === -1) {
660 throw new Error(
661 `Worker message received from unknown worker '${message.workerId.toString()}'`
662 )
663 }
664 }
665
666 /**
667 * Gets the worker node key given its worker id.
668 * @param workerId - The worker id.
669 * @returns The worker node key if the worker id is found in the pool worker nodes, `-1` otherwise.
670 */
671 private getWorkerNodeKeyByWorkerId (workerId: number | undefined): number {
672 return this.workerNodes.findIndex(
673 workerNode => workerNode.info.id === workerId
674 )
675 }
676
677 /** @inheritDoc */
678 public setWorkerChoiceStrategy (
679 workerChoiceStrategy: WorkerChoiceStrategy,
680 workerChoiceStrategyOptions?: WorkerChoiceStrategyOptions
681 ): void {
682 let requireSync = false
683 checkValidWorkerChoiceStrategy(workerChoiceStrategy)
684 if (workerChoiceStrategyOptions != null) {
685 requireSync = !this.setWorkerChoiceStrategyOptions(
686 workerChoiceStrategyOptions
687 )
688 }
689 if (workerChoiceStrategy !== this.opts.workerChoiceStrategy) {
690 this.opts.workerChoiceStrategy = workerChoiceStrategy
691 this.workerChoiceStrategiesContext?.setDefaultWorkerChoiceStrategy(
692 this.opts.workerChoiceStrategy,
693 this.opts.workerChoiceStrategyOptions
694 )
695 requireSync = true
696 }
697 if (requireSync) {
698 this.workerChoiceStrategiesContext?.syncWorkerChoiceStrategies(
699 this.getWorkerChoiceStrategies(),
700 this.opts.workerChoiceStrategyOptions
701 )
702 for (const workerNodeKey of this.workerNodes.keys()) {
703 this.sendStatisticsMessageToWorker(workerNodeKey)
704 }
705 }
706 }
707
708 /** @inheritDoc */
709 public setWorkerChoiceStrategyOptions (
710 workerChoiceStrategyOptions: WorkerChoiceStrategyOptions | undefined
711 ): boolean {
712 this.checkValidWorkerChoiceStrategyOptions(workerChoiceStrategyOptions)
713 if (workerChoiceStrategyOptions != null) {
714 this.opts.workerChoiceStrategyOptions = workerChoiceStrategyOptions
715 this.workerChoiceStrategiesContext?.setOptions(
716 this.opts.workerChoiceStrategyOptions
717 )
718 this.workerChoiceStrategiesContext?.syncWorkerChoiceStrategies(
719 this.getWorkerChoiceStrategies(),
720 this.opts.workerChoiceStrategyOptions
721 )
722 for (const workerNodeKey of this.workerNodes.keys()) {
723 this.sendStatisticsMessageToWorker(workerNodeKey)
724 }
725 return true
726 }
727 return false
728 }
729
730 /** @inheritDoc */
731 public enableTasksQueue (
732 enable: boolean,
733 tasksQueueOptions?: TasksQueueOptions
734 ): void {
735 if (this.opts.enableTasksQueue === true && !enable) {
736 this.unsetTaskStealing()
737 this.unsetTasksStealingOnBackPressure()
738 this.flushTasksQueues()
739 }
740 this.opts.enableTasksQueue = enable
741 this.setTasksQueueOptions(tasksQueueOptions)
742 }
743
744 /** @inheritDoc */
745 public setTasksQueueOptions (
746 tasksQueueOptions: TasksQueueOptions | undefined
747 ): void {
748 if (this.opts.enableTasksQueue === true) {
749 checkValidTasksQueueOptions(tasksQueueOptions)
750 this.opts.tasksQueueOptions =
751 this.buildTasksQueueOptions(tasksQueueOptions)
752 // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
753 this.setTasksQueueSize(this.opts.tasksQueueOptions.size!)
754 if (this.opts.tasksQueueOptions.taskStealing === true) {
755 this.unsetTaskStealing()
756 this.setTaskStealing()
757 } else {
758 this.unsetTaskStealing()
759 }
760 if (this.opts.tasksQueueOptions.tasksStealingOnBackPressure === true) {
761 this.unsetTasksStealingOnBackPressure()
762 this.setTasksStealingOnBackPressure()
763 } else {
764 this.unsetTasksStealingOnBackPressure()
765 }
766 } else if (this.opts.tasksQueueOptions != null) {
767 delete this.opts.tasksQueueOptions
768 }
769 }
770
771 private buildTasksQueueOptions (
772 tasksQueueOptions: TasksQueueOptions | undefined
773 ): TasksQueueOptions {
774 return {
775 ...getDefaultTasksQueueOptions(
776 this.maximumNumberOfWorkers ?? this.minimumNumberOfWorkers
777 ),
778 ...tasksQueueOptions,
779 }
780 }
781
782 private setTasksQueueSize (size: number): void {
783 for (const workerNode of this.workerNodes) {
784 workerNode.tasksQueueBackPressureSize = size
785 }
786 }
787
788 private setTaskStealing (): void {
789 for (const workerNodeKey of this.workerNodes.keys()) {
790 this.workerNodes[workerNodeKey].on('idle', this.handleWorkerNodeIdleEvent)
791 }
792 }
793
794 private unsetTaskStealing (): void {
795 for (const workerNodeKey of this.workerNodes.keys()) {
796 this.workerNodes[workerNodeKey].off(
797 'idle',
798 this.handleWorkerNodeIdleEvent
799 )
800 }
801 }
802
803 private setTasksStealingOnBackPressure (): void {
804 for (const workerNodeKey of this.workerNodes.keys()) {
805 this.workerNodes[workerNodeKey].on(
806 'backPressure',
807 this.handleWorkerNodeBackPressureEvent
808 )
809 }
810 }
811
812 private unsetTasksStealingOnBackPressure (): void {
813 for (const workerNodeKey of this.workerNodes.keys()) {
814 this.workerNodes[workerNodeKey].off(
815 'backPressure',
816 this.handleWorkerNodeBackPressureEvent
817 )
818 }
819 }
820
821 /**
822 * Whether the pool is full or not.
823 *
824 * The pool filling boolean status.
825 */
826 protected get full (): boolean {
827 return (
828 this.workerNodes.length >=
829 (this.maximumNumberOfWorkers ?? this.minimumNumberOfWorkers)
830 )
831 }
832
833 /**
834 * Whether the pool is busy or not.
835 *
836 * The pool busyness boolean status.
837 */
838 protected abstract get busy (): boolean
839
840 /**
841 * Whether worker nodes are executing concurrently their tasks quota or not.
842 * @returns Worker nodes busyness boolean status.
843 */
844 protected internalBusy (): boolean {
845 if (this.opts.enableTasksQueue === true) {
846 return (
847 this.workerNodes.findIndex(
848 workerNode =>
849 workerNode.info.ready &&
850 workerNode.usage.tasks.executing <
851 // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
852 this.opts.tasksQueueOptions!.concurrency!
853 ) === -1
854 )
855 }
856 return (
857 this.workerNodes.findIndex(
858 workerNode =>
859 workerNode.info.ready && workerNode.usage.tasks.executing === 0
860 ) === -1
861 )
862 }
863
864 private isWorkerNodeBusy (workerNodeKey: number): boolean {
865 if (this.opts.enableTasksQueue === true) {
866 return (
867 this.workerNodes[workerNodeKey].usage.tasks.executing >=
868 // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
869 this.opts.tasksQueueOptions!.concurrency!
870 )
871 }
872 return this.workerNodes[workerNodeKey].usage.tasks.executing > 0
873 }
874
875 private async sendTaskFunctionOperationToWorker (
876 workerNodeKey: number,
877 message: MessageValue<Data>
878 ): Promise<boolean> {
879 return await new Promise<boolean>((resolve, reject) => {
880 const taskFunctionOperationListener = (
881 message: MessageValue<Response>
882 ): void => {
883 this.checkMessageWorkerId(message)
884 const workerId = this.getWorkerInfo(workerNodeKey)?.id
885 if (
886 message.taskFunctionOperationStatus != null &&
887 message.workerId === workerId
888 ) {
889 if (message.taskFunctionOperationStatus) {
890 resolve(true)
891 } else {
892 reject(
893 new Error(
894 // eslint-disable-next-line @typescript-eslint/restrict-template-expressions
895 `Task function operation '${message.taskFunctionOperation?.toString()}' failed on worker ${message.workerId?.toString()} with error: '${
896 // eslint-disable-next-line @typescript-eslint/restrict-template-expressions
897 message.workerError?.message
898 }'`
899 )
900 )
901 }
902 this.deregisterWorkerMessageListener(
903 this.getWorkerNodeKeyByWorkerId(message.workerId),
904 taskFunctionOperationListener
905 )
906 }
907 }
908 this.registerWorkerMessageListener(
909 workerNodeKey,
910 taskFunctionOperationListener
911 )
912 this.sendToWorker(workerNodeKey, message)
913 })
914 }
915
916 private async sendTaskFunctionOperationToWorkers (
917 message: MessageValue<Data>
918 ): Promise<boolean> {
919 return await new Promise<boolean>((resolve, reject) => {
920 const responsesReceived = new Array<MessageValue<Response>>()
921 const taskFunctionOperationsListener = (
922 message: MessageValue<Response>
923 ): void => {
924 this.checkMessageWorkerId(message)
925 if (message.taskFunctionOperationStatus != null) {
926 responsesReceived.push(message)
927 if (responsesReceived.length === this.workerNodes.length) {
928 if (
929 responsesReceived.every(
930 message => message.taskFunctionOperationStatus === true
931 )
932 ) {
933 resolve(true)
934 } else if (
935 responsesReceived.some(
936 message => message.taskFunctionOperationStatus === false
937 )
938 ) {
939 const errorResponse = responsesReceived.find(
940 response => response.taskFunctionOperationStatus === false
941 )
942 reject(
943 new Error(
944 `Task function operation '${
945 message.taskFunctionOperation as string
946 // eslint-disable-next-line @typescript-eslint/restrict-template-expressions
947 }' failed on worker ${errorResponse?.workerId?.toString()} with error: '${
948 // eslint-disable-next-line @typescript-eslint/restrict-template-expressions
949 errorResponse?.workerError?.message
950 }'`
951 )
952 )
953 }
954 this.deregisterWorkerMessageListener(
955 this.getWorkerNodeKeyByWorkerId(message.workerId),
956 taskFunctionOperationsListener
957 )
958 }
959 }
960 }
961 for (const workerNodeKey of this.workerNodes.keys()) {
962 this.registerWorkerMessageListener(
963 workerNodeKey,
964 taskFunctionOperationsListener
965 )
966 this.sendToWorker(workerNodeKey, message)
967 }
968 })
969 }
970
971 /** @inheritDoc */
972 public hasTaskFunction (name: string): boolean {
973 return this.listTaskFunctionsProperties().some(
974 taskFunctionProperties => taskFunctionProperties.name === name
975 )
976 }
977
978 /** @inheritDoc */
979 public async addTaskFunction (
980 name: string,
981 fn: TaskFunction<Data, Response> | TaskFunctionObject<Data, Response>
982 ): Promise<boolean> {
983 if (typeof name !== 'string') {
984 throw new TypeError('name argument must be a string')
985 }
986 if (typeof name === 'string' && name.trim().length === 0) {
987 throw new TypeError('name argument must not be an empty string')
988 }
989 if (typeof fn === 'function') {
990 fn = { taskFunction: fn } satisfies TaskFunctionObject<Data, Response>
991 }
992 if (typeof fn.taskFunction !== 'function') {
993 throw new TypeError('taskFunction property must be a function')
994 }
995 checkValidPriority(fn.priority)
996 checkValidWorkerChoiceStrategy(fn.strategy)
997 const opResult = await this.sendTaskFunctionOperationToWorkers({
998 taskFunctionOperation: 'add',
999 taskFunctionProperties: buildTaskFunctionProperties(name, fn),
1000 taskFunction: fn.taskFunction.toString(),
1001 })
1002 this.taskFunctions.set(name, fn)
1003 this.workerChoiceStrategiesContext?.syncWorkerChoiceStrategies(
1004 this.getWorkerChoiceStrategies()
1005 )
1006 for (const workerNodeKey of this.workerNodes.keys()) {
1007 this.sendStatisticsMessageToWorker(workerNodeKey)
1008 }
1009 return opResult
1010 }
1011
1012 /** @inheritDoc */
1013 public async removeTaskFunction (name: string): Promise<boolean> {
1014 if (!this.taskFunctions.has(name)) {
1015 throw new Error(
1016 'Cannot remove a task function not handled on the pool side'
1017 )
1018 }
1019 const opResult = await this.sendTaskFunctionOperationToWorkers({
1020 taskFunctionOperation: 'remove',
1021 taskFunctionProperties: buildTaskFunctionProperties(
1022 name,
1023 this.taskFunctions.get(name)
1024 ),
1025 })
1026 for (const workerNode of this.workerNodes) {
1027 workerNode.deleteTaskFunctionWorkerUsage(name)
1028 }
1029 this.taskFunctions.delete(name)
1030 this.workerChoiceStrategiesContext?.syncWorkerChoiceStrategies(
1031 this.getWorkerChoiceStrategies()
1032 )
1033 for (const workerNodeKey of this.workerNodes.keys()) {
1034 this.sendStatisticsMessageToWorker(workerNodeKey)
1035 }
1036 return opResult
1037 }
1038
1039 /** @inheritDoc */
1040 public listTaskFunctionsProperties (): TaskFunctionProperties[] {
1041 for (const workerNode of this.workerNodes) {
1042 if (
1043 Array.isArray(workerNode.info.taskFunctionsProperties) &&
1044 workerNode.info.taskFunctionsProperties.length > 0
1045 ) {
1046 return workerNode.info.taskFunctionsProperties
1047 }
1048 }
1049 return []
1050 }
1051
1052 /**
1053 * Gets task function worker choice strategy, if any.
1054 * @param name - The task function name.
1055 * @returns The task function worker choice strategy if the task function worker choice strategy is defined, `undefined` otherwise.
1056 */
1057 private readonly getTaskFunctionWorkerChoiceStrategy = (
1058 name?: string
1059 ): WorkerChoiceStrategy | undefined => {
1060 name = name ?? DEFAULT_TASK_NAME
1061 const taskFunctionsProperties = this.listTaskFunctionsProperties()
1062 if (name === DEFAULT_TASK_NAME) {
1063 name = taskFunctionsProperties[1]?.name
1064 }
1065 return taskFunctionsProperties.find(
1066 (taskFunctionProperties: TaskFunctionProperties) =>
1067 taskFunctionProperties.name === name
1068 )?.strategy
1069 }
1070
1071 /**
1072 * Gets worker node task function worker choice strategy, if any.
1073 * @param workerNodeKey - The worker node key.
1074 * @param name - The task function name.
1075 * @returns The worker node task function worker choice strategy if the worker node task function worker choice strategy is defined, `undefined` otherwise.
1076 */
1077 private readonly getWorkerNodeTaskFunctionWorkerChoiceStrategy = (
1078 workerNodeKey: number,
1079 name?: string
1080 ): WorkerChoiceStrategy | undefined => {
1081 const workerInfo = this.getWorkerInfo(workerNodeKey)
1082 if (workerInfo == null) {
1083 return
1084 }
1085 name = name ?? DEFAULT_TASK_NAME
1086 if (name === DEFAULT_TASK_NAME) {
1087 name = workerInfo.taskFunctionsProperties?.[1]?.name
1088 }
1089 return workerInfo.taskFunctionsProperties?.find(
1090 (taskFunctionProperties: TaskFunctionProperties) =>
1091 taskFunctionProperties.name === name
1092 )?.strategy
1093 }
1094
1095 /**
1096 * Gets worker node task function priority, if any.
1097 * @param workerNodeKey - The worker node key.
1098 * @param name - The task function name.
1099 * @returns The worker node task function priority if the worker node task function priority is defined, `undefined` otherwise.
1100 */
1101 private readonly getWorkerNodeTaskFunctionPriority = (
1102 workerNodeKey: number,
1103 name?: string
1104 ): number | undefined => {
1105 const workerInfo = this.getWorkerInfo(workerNodeKey)
1106 if (workerInfo == null) {
1107 return
1108 }
1109 name = name ?? DEFAULT_TASK_NAME
1110 if (name === DEFAULT_TASK_NAME) {
1111 name = workerInfo.taskFunctionsProperties?.[1]?.name
1112 }
1113 return workerInfo.taskFunctionsProperties?.find(
1114 (taskFunctionProperties: TaskFunctionProperties) =>
1115 taskFunctionProperties.name === name
1116 )?.priority
1117 }
1118
1119 /**
1120 * Gets the worker choice strategies registered in this pool.
1121 * @returns The worker choice strategies.
1122 */
1123 private readonly getWorkerChoiceStrategies =
1124 (): Set<WorkerChoiceStrategy> => {
1125 return new Set([
1126 // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
1127 this.opts.workerChoiceStrategy!,
1128 ...(this.listTaskFunctionsProperties()
1129 .map(
1130 (taskFunctionProperties: TaskFunctionProperties) =>
1131 taskFunctionProperties.strategy
1132 )
1133 .filter(
1134 (strategy: WorkerChoiceStrategy | undefined) => strategy != null
1135 ) as WorkerChoiceStrategy[]),
1136 ])
1137 }
1138
1139 /** @inheritDoc */
1140 public async setDefaultTaskFunction (name: string): Promise<boolean> {
1141 return await this.sendTaskFunctionOperationToWorkers({
1142 taskFunctionOperation: 'default',
1143 taskFunctionProperties: buildTaskFunctionProperties(
1144 name,
1145 this.taskFunctions.get(name)
1146 ),
1147 })
1148 }
1149
1150 private shallExecuteTask (workerNodeKey: number): boolean {
1151 return (
1152 this.tasksQueueSize(workerNodeKey) === 0 &&
1153 this.workerNodes[workerNodeKey].usage.tasks.executing <
1154 // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
1155 this.opts.tasksQueueOptions!.concurrency!
1156 )
1157 }
1158
1159 /** @inheritDoc */
1160 public async execute (
1161 data?: Data,
1162 name?: string,
1163 transferList?: readonly TransferListItem[]
1164 ): Promise<Response> {
1165 return await new Promise<Response>((resolve, reject) => {
1166 if (!this.started) {
1167 reject(new Error('Cannot execute a task on not started pool'))
1168 return
1169 }
1170 if (this.destroying) {
1171 reject(new Error('Cannot execute a task on destroying pool'))
1172 return
1173 }
1174 if (name != null && typeof name !== 'string') {
1175 reject(new TypeError('name argument must be a string'))
1176 return
1177 }
1178 if (
1179 name != null &&
1180 typeof name === 'string' &&
1181 name.trim().length === 0
1182 ) {
1183 reject(new TypeError('name argument must not be an empty string'))
1184 return
1185 }
1186 if (transferList != null && !Array.isArray(transferList)) {
1187 reject(new TypeError('transferList argument must be an array'))
1188 return
1189 }
1190 const timestamp = performance.now()
1191 const workerNodeKey = this.chooseWorkerNode(name)
1192 const task: Task<Data> = {
1193 name: name ?? DEFAULT_TASK_NAME,
1194 data: data ?? ({} as Data),
1195 priority: this.getWorkerNodeTaskFunctionPriority(workerNodeKey, name),
1196 strategy: this.getWorkerNodeTaskFunctionWorkerChoiceStrategy(
1197 workerNodeKey,
1198 name
1199 ),
1200 transferList,
1201 timestamp,
1202 taskId: randomUUID(),
1203 }
1204 // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
1205 this.promiseResponseMap.set(task.taskId!, {
1206 resolve,
1207 reject,
1208 workerNodeKey,
1209 ...(this.emitter != null && {
1210 asyncResource: new AsyncResource('poolifier:task', {
1211 triggerAsyncId: this.emitter.asyncId,
1212 requireManualDestroy: true,
1213 }),
1214 }),
1215 })
1216 if (
1217 this.opts.enableTasksQueue === false ||
1218 (this.opts.enableTasksQueue === true &&
1219 this.shallExecuteTask(workerNodeKey))
1220 ) {
1221 this.executeTask(workerNodeKey, task)
1222 } else {
1223 this.enqueueTask(workerNodeKey, task)
1224 }
1225 })
1226 }
1227
1228 /**
1229 * Starts the minimum number of workers.
1230 * @param initWorkerNodeUsage - Whether to initialize the worker node usage or not. @defaultValue false
1231 */
1232 private startMinimumNumberOfWorkers (initWorkerNodeUsage = false): void {
1233 this.startingMinimumNumberOfWorkers = true
1234 while (
1235 this.workerNodes.reduce(
1236 (accumulator, workerNode) =>
1237 !workerNode.info.dynamic ? accumulator + 1 : accumulator,
1238 0
1239 ) < this.minimumNumberOfWorkers
1240 ) {
1241 const workerNodeKey = this.createAndSetupWorkerNode()
1242 initWorkerNodeUsage &&
1243 this.initWorkerNodeUsage(this.workerNodes[workerNodeKey])
1244 }
1245 this.startingMinimumNumberOfWorkers = false
1246 }
1247
1248 /** @inheritdoc */
1249 public start (): void {
1250 if (this.started) {
1251 throw new Error('Cannot start an already started pool')
1252 }
1253 if (this.starting) {
1254 throw new Error('Cannot start an already starting pool')
1255 }
1256 if (this.destroying) {
1257 throw new Error('Cannot start a destroying pool')
1258 }
1259 this.starting = true
1260 this.startMinimumNumberOfWorkers()
1261 this.startTimestamp = performance.now()
1262 this.starting = false
1263 this.started = true
1264 }
1265
1266 /** @inheritDoc */
1267 public async destroy (): Promise<void> {
1268 if (!this.started) {
1269 throw new Error('Cannot destroy an already destroyed pool')
1270 }
1271 if (this.starting) {
1272 throw new Error('Cannot destroy an starting pool')
1273 }
1274 if (this.destroying) {
1275 throw new Error('Cannot destroy an already destroying pool')
1276 }
1277 this.destroying = true
1278 await Promise.all(
1279 this.workerNodes.map(async (_, workerNodeKey) => {
1280 await this.destroyWorkerNode(workerNodeKey)
1281 })
1282 )
1283 this.emitter?.emit(PoolEvents.destroy, this.info)
1284 this.emitter?.emitDestroy()
1285 this.readyEventEmitted = false
1286 delete this.startTimestamp
1287 this.destroying = false
1288 this.started = false
1289 }
1290
1291 private async sendKillMessageToWorker (workerNodeKey: number): Promise<void> {
1292 await new Promise<void>((resolve, reject) => {
1293 // eslint-disable-next-line @typescript-eslint/no-unnecessary-condition
1294 if (this.workerNodes[workerNodeKey] == null) {
1295 resolve()
1296 return
1297 }
1298 const killMessageListener = (message: MessageValue<Response>): void => {
1299 this.checkMessageWorkerId(message)
1300 if (message.kill === 'success') {
1301 resolve()
1302 } else if (message.kill === 'failure') {
1303 reject(
1304 new Error(
1305 // eslint-disable-next-line @typescript-eslint/restrict-template-expressions
1306 `Kill message handling failed on worker ${message.workerId?.toString()}`
1307 )
1308 )
1309 }
1310 }
1311 // FIXME: should be registered only once
1312 this.registerWorkerMessageListener(workerNodeKey, killMessageListener)
1313 this.sendToWorker(workerNodeKey, { kill: true })
1314 })
1315 }
1316
1317 /**
1318 * Terminates the worker node given its worker node key.
1319 * @param workerNodeKey - The worker node key.
1320 */
1321 protected async destroyWorkerNode (workerNodeKey: number): Promise<void> {
1322 this.flagWorkerNodeAsNotReady(workerNodeKey)
1323 const flushedTasks = this.flushTasksQueue(workerNodeKey)
1324 const workerNode = this.workerNodes[workerNodeKey]
1325 await waitWorkerNodeEvents(
1326 workerNode,
1327 'taskFinished',
1328 flushedTasks,
1329 this.opts.tasksQueueOptions?.tasksFinishedTimeout ??
1330 getDefaultTasksQueueOptions(
1331 this.maximumNumberOfWorkers ?? this.minimumNumberOfWorkers
1332 ).tasksFinishedTimeout
1333 )
1334 await this.sendKillMessageToWorker(workerNodeKey)
1335 await workerNode.terminate()
1336 }
1337
1338 /**
1339 * Setup hook to execute code before worker nodes are created in the abstract constructor.
1340 * Can be overridden.
1341 */
1342 protected setupHook (): void {
1343 /* Intentionally empty */
1344 }
1345
1346 /**
1347 * Returns whether the worker is the main worker or not.
1348 * @returns `true` if the worker is the main worker, `false` otherwise.
1349 */
1350 protected abstract isMain (): boolean
1351
1352 /**
1353 * Hook executed before the worker task execution.
1354 * Can be overridden.
1355 * @param workerNodeKey - The worker node key.
1356 * @param task - The task to execute.
1357 */
1358 protected beforeTaskExecutionHook (
1359 workerNodeKey: number,
1360 task: Task<Data>
1361 ): void {
1362 // eslint-disable-next-line @typescript-eslint/no-unnecessary-condition
1363 if (this.workerNodes[workerNodeKey]?.usage != null) {
1364 const workerUsage = this.workerNodes[workerNodeKey].usage
1365 ++workerUsage.tasks.executing
1366 updateWaitTimeWorkerUsage(
1367 this.workerChoiceStrategiesContext,
1368 workerUsage,
1369 task
1370 )
1371 }
1372 if (
1373 this.shallUpdateTaskFunctionWorkerUsage(workerNodeKey) &&
1374 // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
1375 this.workerNodes[workerNodeKey].getTaskFunctionWorkerUsage(task.name!) !=
1376 null
1377 ) {
1378 // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
1379 const taskFunctionWorkerUsage = this.workerNodes[
1380 workerNodeKey
1381 // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
1382 ].getTaskFunctionWorkerUsage(task.name!)!
1383 ++taskFunctionWorkerUsage.tasks.executing
1384 updateWaitTimeWorkerUsage(
1385 this.workerChoiceStrategiesContext,
1386 taskFunctionWorkerUsage,
1387 task
1388 )
1389 }
1390 }
1391
1392 /**
1393 * Hook executed after the worker task execution.
1394 * Can be overridden.
1395 * @param workerNodeKey - The worker node key.
1396 * @param message - The received message.
1397 */
1398 protected afterTaskExecutionHook (
1399 workerNodeKey: number,
1400 message: MessageValue<Response>
1401 ): void {
1402 let needWorkerChoiceStrategiesUpdate = false
1403 // eslint-disable-next-line @typescript-eslint/no-unnecessary-condition
1404 if (this.workerNodes[workerNodeKey]?.usage != null) {
1405 const workerUsage = this.workerNodes[workerNodeKey].usage
1406 updateTaskStatisticsWorkerUsage(workerUsage, message)
1407 updateRunTimeWorkerUsage(
1408 this.workerChoiceStrategiesContext,
1409 workerUsage,
1410 message
1411 )
1412 updateEluWorkerUsage(
1413 this.workerChoiceStrategiesContext,
1414 workerUsage,
1415 message
1416 )
1417 needWorkerChoiceStrategiesUpdate = true
1418 }
1419 if (
1420 this.shallUpdateTaskFunctionWorkerUsage(workerNodeKey) &&
1421 this.workerNodes[workerNodeKey].getTaskFunctionWorkerUsage(
1422 // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
1423 message.taskPerformance!.name
1424 ) != null
1425 ) {
1426 // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
1427 const taskFunctionWorkerUsage = this.workerNodes[
1428 workerNodeKey
1429 // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
1430 ].getTaskFunctionWorkerUsage(message.taskPerformance!.name)!
1431 updateTaskStatisticsWorkerUsage(taskFunctionWorkerUsage, message)
1432 updateRunTimeWorkerUsage(
1433 this.workerChoiceStrategiesContext,
1434 taskFunctionWorkerUsage,
1435 message
1436 )
1437 updateEluWorkerUsage(
1438 this.workerChoiceStrategiesContext,
1439 taskFunctionWorkerUsage,
1440 message
1441 )
1442 needWorkerChoiceStrategiesUpdate = true
1443 }
1444 if (needWorkerChoiceStrategiesUpdate) {
1445 this.workerChoiceStrategiesContext?.update(workerNodeKey)
1446 }
1447 }
1448
1449 /**
1450 * Whether the worker node shall update its task function worker usage or not.
1451 * @param workerNodeKey - The worker node key.
1452 * @returns `true` if the worker node shall update its task function worker usage, `false` otherwise.
1453 */
1454 private shallUpdateTaskFunctionWorkerUsage (workerNodeKey: number): boolean {
1455 const workerInfo = this.getWorkerInfo(workerNodeKey)
1456 return (
1457 workerInfo != null &&
1458 Array.isArray(workerInfo.taskFunctionsProperties) &&
1459 workerInfo.taskFunctionsProperties.length > 2
1460 )
1461 }
1462
1463 /**
1464 * Chooses a worker node for the next task.
1465 * @param name - The task function name.
1466 * @returns The chosen worker node key.
1467 */
1468 private chooseWorkerNode (name?: string): number {
1469 if (this.shallCreateDynamicWorker()) {
1470 const workerNodeKey = this.createAndSetupDynamicWorkerNode()
1471 if (
1472 this.workerChoiceStrategiesContext?.getPolicy().dynamicWorkerUsage ===
1473 true
1474 ) {
1475 return workerNodeKey
1476 }
1477 }
1478 // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
1479 return this.workerChoiceStrategiesContext!.execute(
1480 this.getTaskFunctionWorkerChoiceStrategy(name)
1481 )
1482 }
1483
1484 /**
1485 * Conditions for dynamic worker creation.
1486 * @returns Whether to create a dynamic worker or not.
1487 */
1488 protected abstract shallCreateDynamicWorker (): boolean
1489
1490 /**
1491 * Sends a message to worker given its worker node key.
1492 * @param workerNodeKey - The worker node key.
1493 * @param message - The message.
1494 * @param transferList - The optional array of transferable objects.
1495 */
1496 protected abstract sendToWorker (
1497 workerNodeKey: number,
1498 message: MessageValue<Data>,
1499 transferList?: readonly TransferListItem[]
1500 ): void
1501
1502 /**
1503 * Initializes the worker node usage with sensible default values gathered during runtime.
1504 * @param workerNode - The worker node.
1505 */
1506 private initWorkerNodeUsage (workerNode: IWorkerNode<Worker, Data>): void {
1507 if (
1508 this.workerChoiceStrategiesContext?.getTaskStatisticsRequirements()
1509 .runTime.aggregate === true
1510 ) {
1511 workerNode.usage.runTime.aggregate = min(
1512 ...this.workerNodes.map(
1513 workerNode =>
1514 workerNode.usage.runTime.aggregate ?? Number.POSITIVE_INFINITY
1515 )
1516 )
1517 }
1518 if (
1519 this.workerChoiceStrategiesContext?.getTaskStatisticsRequirements()
1520 .waitTime.aggregate === true
1521 ) {
1522 workerNode.usage.waitTime.aggregate = min(
1523 ...this.workerNodes.map(
1524 workerNode =>
1525 workerNode.usage.waitTime.aggregate ?? Number.POSITIVE_INFINITY
1526 )
1527 )
1528 }
1529 if (
1530 this.workerChoiceStrategiesContext?.getTaskStatisticsRequirements().elu
1531 .aggregate === true
1532 ) {
1533 workerNode.usage.elu.active.aggregate = min(
1534 ...this.workerNodes.map(
1535 workerNode =>
1536 workerNode.usage.elu.active.aggregate ?? Number.POSITIVE_INFINITY
1537 )
1538 )
1539 }
1540 }
1541
1542 /**
1543 * Creates a new, completely set up worker node.
1544 * @returns New, completely set up worker node key.
1545 */
1546 protected createAndSetupWorkerNode (): number {
1547 const workerNode = this.createWorkerNode()
1548 workerNode.registerWorkerEventHandler(
1549 'online',
1550 this.opts.onlineHandler ?? EMPTY_FUNCTION
1551 )
1552 workerNode.registerWorkerEventHandler(
1553 'message',
1554 this.opts.messageHandler ?? EMPTY_FUNCTION
1555 )
1556 workerNode.registerWorkerEventHandler(
1557 'error',
1558 this.opts.errorHandler ?? EMPTY_FUNCTION
1559 )
1560 workerNode.registerOnceWorkerEventHandler('error', (error: Error) => {
1561 workerNode.info.ready = false
1562 this.emitter?.emit(PoolEvents.error, error)
1563 if (
1564 this.started &&
1565 !this.destroying &&
1566 this.opts.restartWorkerOnError === true
1567 ) {
1568 if (workerNode.info.dynamic) {
1569 this.createAndSetupDynamicWorkerNode()
1570 } else if (!this.startingMinimumNumberOfWorkers) {
1571 this.startMinimumNumberOfWorkers(true)
1572 }
1573 }
1574 if (
1575 this.started &&
1576 !this.destroying &&
1577 this.opts.enableTasksQueue === true
1578 ) {
1579 this.redistributeQueuedTasks(this.workerNodes.indexOf(workerNode))
1580 }
1581 // eslint-disable-next-line @typescript-eslint/no-unnecessary-condition
1582 workerNode?.terminate().catch((error: unknown) => {
1583 this.emitter?.emit(PoolEvents.error, error)
1584 })
1585 })
1586 workerNode.registerWorkerEventHandler(
1587 'exit',
1588 this.opts.exitHandler ?? EMPTY_FUNCTION
1589 )
1590 workerNode.registerOnceWorkerEventHandler('exit', () => {
1591 this.removeWorkerNode(workerNode)
1592 if (
1593 this.started &&
1594 !this.startingMinimumNumberOfWorkers &&
1595 !this.destroying
1596 ) {
1597 this.startMinimumNumberOfWorkers(true)
1598 }
1599 })
1600 const workerNodeKey = this.addWorkerNode(workerNode)
1601 this.afterWorkerNodeSetup(workerNodeKey)
1602 return workerNodeKey
1603 }
1604
1605 /**
1606 * Creates a new, completely set up dynamic worker node.
1607 * @returns New, completely set up dynamic worker node key.
1608 */
1609 protected createAndSetupDynamicWorkerNode (): number {
1610 const workerNodeKey = this.createAndSetupWorkerNode()
1611 this.registerWorkerMessageListener(workerNodeKey, message => {
1612 this.checkMessageWorkerId(message)
1613 const localWorkerNodeKey = this.getWorkerNodeKeyByWorkerId(
1614 message.workerId
1615 )
1616 const workerInfo = this.getWorkerInfo(localWorkerNodeKey)
1617 const workerUsage = this.workerNodes[localWorkerNodeKey]?.usage
1618 // Kill message received from worker
1619 if (
1620 isKillBehavior(KillBehaviors.HARD, message.kill) ||
1621 (isKillBehavior(KillBehaviors.SOFT, message.kill) &&
1622 ((this.opts.enableTasksQueue === false &&
1623 workerUsage.tasks.executing === 0) ||
1624 (this.opts.enableTasksQueue === true &&
1625 workerInfo != null &&
1626 !workerInfo.stealing &&
1627 workerUsage.tasks.executing === 0 &&
1628 this.tasksQueueSize(localWorkerNodeKey) === 0)))
1629 ) {
1630 // Flag the worker node as not ready immediately
1631 this.flagWorkerNodeAsNotReady(localWorkerNodeKey)
1632 this.destroyWorkerNode(localWorkerNodeKey).catch((error: unknown) => {
1633 this.emitter?.emit(PoolEvents.error, error)
1634 })
1635 }
1636 })
1637 this.sendToWorker(workerNodeKey, {
1638 checkActive: true,
1639 })
1640 if (this.taskFunctions.size > 0) {
1641 for (const [taskFunctionName, taskFunctionObject] of this.taskFunctions) {
1642 this.sendTaskFunctionOperationToWorker(workerNodeKey, {
1643 taskFunctionOperation: 'add',
1644 taskFunctionProperties: buildTaskFunctionProperties(
1645 taskFunctionName,
1646 taskFunctionObject
1647 ),
1648 taskFunction: taskFunctionObject.taskFunction.toString(),
1649 }).catch((error: unknown) => {
1650 this.emitter?.emit(PoolEvents.error, error)
1651 })
1652 }
1653 }
1654 const workerNode = this.workerNodes[workerNodeKey]
1655 workerNode.info.dynamic = true
1656 if (
1657 this.workerChoiceStrategiesContext?.getPolicy().dynamicWorkerReady ===
1658 true ||
1659 this.workerChoiceStrategiesContext?.getPolicy().dynamicWorkerUsage ===
1660 true
1661 ) {
1662 workerNode.info.ready = true
1663 }
1664 this.initWorkerNodeUsage(workerNode)
1665 this.checkAndEmitDynamicWorkerCreationEvents()
1666 return workerNodeKey
1667 }
1668
1669 /**
1670 * Registers a listener callback on the worker given its worker node key.
1671 * @param workerNodeKey - The worker node key.
1672 * @param listener - The message listener callback.
1673 */
1674 protected abstract registerWorkerMessageListener<
1675 Message extends Data | Response
1676 >(
1677 workerNodeKey: number,
1678 listener: (message: MessageValue<Message>) => void
1679 ): void
1680
1681 /**
1682 * Registers once a listener callback on the worker given its worker node key.
1683 * @param workerNodeKey - The worker node key.
1684 * @param listener - The message listener callback.
1685 */
1686 protected abstract registerOnceWorkerMessageListener<
1687 Message extends Data | Response
1688 >(
1689 workerNodeKey: number,
1690 listener: (message: MessageValue<Message>) => void
1691 ): void
1692
1693 /**
1694 * Deregisters a listener callback on the worker given its worker node key.
1695 * @param workerNodeKey - The worker node key.
1696 * @param listener - The message listener callback.
1697 */
1698 protected abstract deregisterWorkerMessageListener<
1699 Message extends Data | Response
1700 >(
1701 workerNodeKey: number,
1702 listener: (message: MessageValue<Message>) => void
1703 ): void
1704
1705 /**
1706 * Method hooked up after a worker node has been newly created.
1707 * Can be overridden.
1708 * @param workerNodeKey - The newly created worker node key.
1709 */
1710 protected afterWorkerNodeSetup (workerNodeKey: number): void {
1711 // Listen to worker messages.
1712 this.registerWorkerMessageListener(
1713 workerNodeKey,
1714 this.workerMessageListener
1715 )
1716 // Send the startup message to worker.
1717 this.sendStartupMessageToWorker(workerNodeKey)
1718 // Send the statistics message to worker.
1719 this.sendStatisticsMessageToWorker(workerNodeKey)
1720 if (this.opts.enableTasksQueue === true) {
1721 if (this.opts.tasksQueueOptions?.taskStealing === true) {
1722 this.workerNodes[workerNodeKey].on(
1723 'idle',
1724 this.handleWorkerNodeIdleEvent
1725 )
1726 }
1727 if (this.opts.tasksQueueOptions?.tasksStealingOnBackPressure === true) {
1728 this.workerNodes[workerNodeKey].on(
1729 'backPressure',
1730 this.handleWorkerNodeBackPressureEvent
1731 )
1732 }
1733 }
1734 }
1735
1736 /**
1737 * Sends the startup message to worker given its worker node key.
1738 * @param workerNodeKey - The worker node key.
1739 */
1740 protected abstract sendStartupMessageToWorker (workerNodeKey: number): void
1741
1742 /**
1743 * Sends the statistics message to worker given its worker node key.
1744 * @param workerNodeKey - The worker node key.
1745 */
1746 private sendStatisticsMessageToWorker (workerNodeKey: number): void {
1747 this.sendToWorker(workerNodeKey, {
1748 statistics: {
1749 runTime:
1750 this.workerChoiceStrategiesContext?.getTaskStatisticsRequirements()
1751 .runTime.aggregate ?? false,
1752 elu:
1753 this.workerChoiceStrategiesContext?.getTaskStatisticsRequirements()
1754 .elu.aggregate ?? false,
1755 },
1756 })
1757 }
1758
1759 private cannotStealTask (): boolean {
1760 return this.workerNodes.length <= 1 || this.info.queuedTasks === 0
1761 }
1762
1763 private handleTask (workerNodeKey: number, task: Task<Data>): void {
1764 if (this.shallExecuteTask(workerNodeKey)) {
1765 this.executeTask(workerNodeKey, task)
1766 } else {
1767 this.enqueueTask(workerNodeKey, task)
1768 }
1769 }
1770
1771 private redistributeQueuedTasks (sourceWorkerNodeKey: number): void {
1772 if (sourceWorkerNodeKey === -1 || this.cannotStealTask()) {
1773 return
1774 }
1775 while (this.tasksQueueSize(sourceWorkerNodeKey) > 0) {
1776 const destinationWorkerNodeKey = this.workerNodes.reduce(
1777 (minWorkerNodeKey, workerNode, workerNodeKey, workerNodes) => {
1778 return sourceWorkerNodeKey !== workerNodeKey &&
1779 workerNode.info.ready &&
1780 workerNode.usage.tasks.queued <
1781 workerNodes[minWorkerNodeKey].usage.tasks.queued
1782 ? workerNodeKey
1783 : minWorkerNodeKey
1784 },
1785 0
1786 )
1787 this.handleTask(
1788 destinationWorkerNodeKey,
1789 // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
1790 this.dequeueTask(sourceWorkerNodeKey)!
1791 )
1792 }
1793 }
1794
1795 private updateTaskStolenStatisticsWorkerUsage (
1796 workerNodeKey: number,
1797 taskName: string
1798 ): void {
1799 const workerNode = this.workerNodes[workerNodeKey]
1800 // eslint-disable-next-line @typescript-eslint/no-unnecessary-condition
1801 if (workerNode?.usage != null) {
1802 ++workerNode.usage.tasks.stolen
1803 }
1804 if (
1805 this.shallUpdateTaskFunctionWorkerUsage(workerNodeKey) &&
1806 workerNode.getTaskFunctionWorkerUsage(taskName) != null
1807 ) {
1808 // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
1809 ++workerNode.getTaskFunctionWorkerUsage(taskName)!.tasks.stolen
1810 }
1811 }
1812
1813 private updateTaskSequentiallyStolenStatisticsWorkerUsage (
1814 workerNodeKey: number,
1815 taskName: string,
1816 previousTaskName?: string
1817 ): void {
1818 const workerNode = this.workerNodes[workerNodeKey]
1819 // eslint-disable-next-line @typescript-eslint/no-unnecessary-condition
1820 if (workerNode?.usage != null) {
1821 ++workerNode.usage.tasks.sequentiallyStolen
1822 }
1823 if (
1824 this.shallUpdateTaskFunctionWorkerUsage(workerNodeKey) &&
1825 workerNode.getTaskFunctionWorkerUsage(taskName) != null
1826 ) {
1827 const taskFunctionWorkerUsage =
1828 // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
1829 workerNode.getTaskFunctionWorkerUsage(taskName)!
1830 if (
1831 taskFunctionWorkerUsage.tasks.sequentiallyStolen === 0 ||
1832 (previousTaskName != null &&
1833 previousTaskName === taskName &&
1834 taskFunctionWorkerUsage.tasks.sequentiallyStolen > 0)
1835 ) {
1836 ++taskFunctionWorkerUsage.tasks.sequentiallyStolen
1837 } else if (taskFunctionWorkerUsage.tasks.sequentiallyStolen > 0) {
1838 taskFunctionWorkerUsage.tasks.sequentiallyStolen = 0
1839 }
1840 }
1841 }
1842
1843 private resetTaskSequentiallyStolenStatisticsWorkerUsage (
1844 workerNodeKey: number,
1845 taskName: string
1846 ): void {
1847 const workerNode = this.workerNodes[workerNodeKey]
1848 // eslint-disable-next-line @typescript-eslint/no-unnecessary-condition
1849 if (workerNode?.usage != null) {
1850 workerNode.usage.tasks.sequentiallyStolen = 0
1851 }
1852 if (
1853 this.shallUpdateTaskFunctionWorkerUsage(workerNodeKey) &&
1854 workerNode.getTaskFunctionWorkerUsage(taskName) != null
1855 ) {
1856 // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
1857 workerNode.getTaskFunctionWorkerUsage(
1858 taskName
1859 )!.tasks.sequentiallyStolen = 0
1860 }
1861 }
1862
1863 private readonly handleWorkerNodeIdleEvent = (
1864 eventDetail: WorkerNodeEventDetail,
1865 previousStolenTask?: Task<Data>
1866 ): void => {
1867 const { workerNodeKey } = eventDetail
1868 if (workerNodeKey == null) {
1869 throw new Error(
1870 "WorkerNode event detail 'workerNodeKey' property must be defined"
1871 )
1872 }
1873 const workerInfo = this.getWorkerInfo(workerNodeKey)
1874 if (workerInfo == null) {
1875 throw new Error(
1876 `Worker node with key '${workerNodeKey.toString()}' not found in pool`
1877 )
1878 }
1879 if (
1880 this.cannotStealTask() ||
1881 (this.info.stealingWorkerNodes ?? 0) >
1882 Math.floor(this.workerNodes.length / 2)
1883 ) {
1884 if (previousStolenTask != null) {
1885 workerInfo.stealing = false
1886 this.resetTaskSequentiallyStolenStatisticsWorkerUsage(
1887 workerNodeKey,
1888 // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
1889 previousStolenTask.name!
1890 )
1891 }
1892 return
1893 }
1894 const workerNodeTasksUsage = this.workerNodes[workerNodeKey].usage.tasks
1895 if (
1896 previousStolenTask != null &&
1897 (workerNodeTasksUsage.executing > 0 ||
1898 this.tasksQueueSize(workerNodeKey) > 0)
1899 ) {
1900 workerInfo.stealing = false
1901 this.resetTaskSequentiallyStolenStatisticsWorkerUsage(
1902 workerNodeKey,
1903 // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
1904 previousStolenTask.name!
1905 )
1906 return
1907 }
1908 workerInfo.stealing = true
1909 const stolenTask = this.workerNodeStealTask(workerNodeKey)
1910 if (stolenTask != null) {
1911 this.updateTaskSequentiallyStolenStatisticsWorkerUsage(
1912 workerNodeKey,
1913 // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
1914 stolenTask.name!,
1915 previousStolenTask?.name
1916 )
1917 }
1918 sleep(exponentialDelay(workerNodeTasksUsage.sequentiallyStolen))
1919 .then(() => {
1920 this.handleWorkerNodeIdleEvent(eventDetail, stolenTask)
1921 return undefined
1922 })
1923 .catch((error: unknown) => {
1924 this.emitter?.emit(PoolEvents.error, error)
1925 })
1926 }
1927
1928 private readonly workerNodeStealTask = (
1929 workerNodeKey: number
1930 ): Task<Data> | undefined => {
1931 const workerNodes = this.workerNodes
1932 .slice()
1933 .sort(
1934 (workerNodeA, workerNodeB) =>
1935 workerNodeB.usage.tasks.queued - workerNodeA.usage.tasks.queued
1936 )
1937 const sourceWorkerNode = workerNodes.find(
1938 (sourceWorkerNode, sourceWorkerNodeKey) =>
1939 sourceWorkerNode.info.ready &&
1940 !sourceWorkerNode.info.stealing &&
1941 sourceWorkerNodeKey !== workerNodeKey &&
1942 sourceWorkerNode.usage.tasks.queued > 0
1943 )
1944 if (sourceWorkerNode != null) {
1945 // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
1946 const task = sourceWorkerNode.dequeueLastPrioritizedTask()!
1947 this.handleTask(workerNodeKey, task)
1948 // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
1949 this.updateTaskStolenStatisticsWorkerUsage(workerNodeKey, task.name!)
1950 return task
1951 }
1952 }
1953
1954 private readonly handleWorkerNodeBackPressureEvent = (
1955 eventDetail: WorkerNodeEventDetail
1956 ): void => {
1957 if (
1958 this.cannotStealTask() ||
1959 this.hasBackPressure() ||
1960 (this.info.stealingWorkerNodes ?? 0) >
1961 Math.floor(this.workerNodes.length / 2)
1962 ) {
1963 return
1964 }
1965 const sizeOffset = 1
1966 // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
1967 if (this.opts.tasksQueueOptions!.size! <= sizeOffset) {
1968 return
1969 }
1970 const { workerId } = eventDetail
1971 const sourceWorkerNode =
1972 this.workerNodes[this.getWorkerNodeKeyByWorkerId(workerId)]
1973 const workerNodes = this.workerNodes
1974 .slice()
1975 .sort(
1976 (workerNodeA, workerNodeB) =>
1977 workerNodeA.usage.tasks.queued - workerNodeB.usage.tasks.queued
1978 )
1979 for (const [workerNodeKey, workerNode] of workerNodes.entries()) {
1980 if (
1981 sourceWorkerNode.usage.tasks.queued > 0 &&
1982 workerNode.info.ready &&
1983 !workerNode.info.stealing &&
1984 workerNode.info.id !== workerId &&
1985 workerNode.usage.tasks.queued <
1986 // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
1987 this.opts.tasksQueueOptions!.size! - sizeOffset
1988 ) {
1989 const workerInfo = this.getWorkerInfo(workerNodeKey)
1990 if (workerInfo == null) {
1991 throw new Error(
1992 `Worker node with key '${workerNodeKey.toString()}' not found in pool`
1993 )
1994 }
1995 workerInfo.stealing = true
1996 // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
1997 const task = sourceWorkerNode.dequeueLastPrioritizedTask()!
1998 this.handleTask(workerNodeKey, task)
1999 // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
2000 this.updateTaskStolenStatisticsWorkerUsage(workerNodeKey, task.name!)
2001 workerInfo.stealing = false
2002 }
2003 }
2004 }
2005
2006 private setTasksQueuePriority (workerNodeKey: number): void {
2007 this.workerNodes[workerNodeKey].setTasksQueuePriority(
2008 this.getTasksQueuePriority()
2009 )
2010 }
2011
2012 /**
2013 * This method is the message listener registered on each worker.
2014 * @param message - The message received from the worker.
2015 */
2016 protected readonly workerMessageListener = (
2017 message: MessageValue<Response>
2018 ): void => {
2019 this.checkMessageWorkerId(message)
2020 const { workerId, ready, taskId, taskFunctionsProperties } = message
2021 if (ready != null && taskFunctionsProperties != null) {
2022 // Worker ready response received from worker
2023 this.handleWorkerReadyResponse(message)
2024 } else if (taskFunctionsProperties != null) {
2025 // Task function properties message received from worker
2026 const workerNodeKey = this.getWorkerNodeKeyByWorkerId(workerId)
2027 const workerInfo = this.getWorkerInfo(workerNodeKey)
2028 if (workerInfo != null) {
2029 workerInfo.taskFunctionsProperties = taskFunctionsProperties
2030 this.sendStatisticsMessageToWorker(workerNodeKey)
2031 this.setTasksQueuePriority(workerNodeKey)
2032 }
2033 } else if (taskId != null) {
2034 // Task execution response received from worker
2035 this.handleTaskExecutionResponse(message)
2036 }
2037 }
2038
2039 private checkAndEmitReadyEvent (): void {
2040 if (!this.readyEventEmitted && this.ready) {
2041 this.emitter?.emit(PoolEvents.ready, this.info)
2042 this.readyEventEmitted = true
2043 }
2044 }
2045
2046 private handleWorkerReadyResponse (message: MessageValue<Response>): void {
2047 const { workerId, ready, taskFunctionsProperties } = message
2048 if (ready == null || !ready) {
2049 // eslint-disable-next-line @typescript-eslint/restrict-template-expressions
2050 throw new Error(`Worker ${workerId?.toString()} failed to initialize`)
2051 }
2052 const workerNodeKey = this.getWorkerNodeKeyByWorkerId(workerId)
2053 const workerNode = this.workerNodes[workerNodeKey]
2054 workerNode.info.ready = ready
2055 workerNode.info.taskFunctionsProperties = taskFunctionsProperties
2056 this.sendStatisticsMessageToWorker(workerNodeKey)
2057 this.setTasksQueuePriority(workerNodeKey)
2058 this.checkAndEmitReadyEvent()
2059 }
2060
2061 private handleTaskExecutionResponse (message: MessageValue<Response>): void {
2062 const { workerId, taskId, workerError, data } = message
2063 // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
2064 const promiseResponse = this.promiseResponseMap.get(taskId!)
2065 if (promiseResponse != null) {
2066 const { resolve, reject, workerNodeKey, asyncResource } = promiseResponse
2067 const workerNode = this.workerNodes[workerNodeKey]
2068 if (workerError != null) {
2069 this.emitter?.emit(PoolEvents.taskError, workerError)
2070 asyncResource != null
2071 ? asyncResource.runInAsyncScope(
2072 reject,
2073 this.emitter,
2074 workerError.message
2075 )
2076 : reject(workerError.message)
2077 } else {
2078 asyncResource != null
2079 ? asyncResource.runInAsyncScope(resolve, this.emitter, data)
2080 : resolve(data as Response)
2081 }
2082 asyncResource?.emitDestroy()
2083 this.afterTaskExecutionHook(workerNodeKey, message)
2084 // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
2085 this.promiseResponseMap.delete(taskId!)
2086 // eslint-disable-next-line @typescript-eslint/no-unnecessary-condition
2087 workerNode?.emit('taskFinished', taskId)
2088 if (
2089 this.opts.enableTasksQueue === true &&
2090 !this.destroying &&
2091 // eslint-disable-next-line @typescript-eslint/no-unnecessary-condition
2092 workerNode != null
2093 ) {
2094 const workerNodeTasksUsage = workerNode.usage.tasks
2095 if (
2096 this.tasksQueueSize(workerNodeKey) > 0 &&
2097 workerNodeTasksUsage.executing <
2098 // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
2099 this.opts.tasksQueueOptions!.concurrency!
2100 ) {
2101 // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
2102 this.executeTask(workerNodeKey, this.dequeueTask(workerNodeKey)!)
2103 }
2104 if (
2105 workerNodeTasksUsage.executing === 0 &&
2106 this.tasksQueueSize(workerNodeKey) === 0 &&
2107 workerNodeTasksUsage.sequentiallyStolen === 0
2108 ) {
2109 workerNode.emit('idle', {
2110 workerId,
2111 workerNodeKey,
2112 })
2113 }
2114 }
2115 }
2116 }
2117
2118 private checkAndEmitTaskExecutionEvents (): void {
2119 if (this.busy) {
2120 this.emitter?.emit(PoolEvents.busy, this.info)
2121 }
2122 }
2123
2124 private checkAndEmitTaskQueuingEvents (): void {
2125 if (this.hasBackPressure()) {
2126 this.emitter?.emit(PoolEvents.backPressure, this.info)
2127 }
2128 }
2129
2130 /**
2131 * Emits dynamic worker creation events.
2132 */
2133 protected abstract checkAndEmitDynamicWorkerCreationEvents (): void
2134
2135 /**
2136 * Gets the worker information given its worker node key.
2137 * @param workerNodeKey - The worker node key.
2138 * @returns The worker information.
2139 */
2140 protected getWorkerInfo (workerNodeKey: number): WorkerInfo | undefined {
2141 return this.workerNodes[workerNodeKey]?.info
2142 }
2143
2144 private getTasksQueuePriority (): boolean {
2145 return this.listTaskFunctionsProperties().some(
2146 taskFunctionProperties => taskFunctionProperties.priority != null
2147 )
2148 }
2149
2150 /**
2151 * Creates a worker node.
2152 * @returns The created worker node.
2153 */
2154 private createWorkerNode (): IWorkerNode<Worker, Data> {
2155 const workerNode = new WorkerNode<Worker, Data>(
2156 this.worker,
2157 this.filePath,
2158 {
2159 env: this.opts.env,
2160 workerOptions: this.opts.workerOptions,
2161 tasksQueueBackPressureSize:
2162 this.opts.tasksQueueOptions?.size ??
2163 getDefaultTasksQueueOptions(
2164 this.maximumNumberOfWorkers ?? this.minimumNumberOfWorkers
2165 ).size,
2166 tasksQueueBucketSize: defaultBucketSize,
2167 tasksQueuePriority: this.getTasksQueuePriority(),
2168 }
2169 )
2170 // Flag the worker node as ready at pool startup.
2171 if (this.starting) {
2172 workerNode.info.ready = true
2173 }
2174 return workerNode
2175 }
2176
2177 /**
2178 * Adds the given worker node in the pool worker nodes.
2179 * @param workerNode - The worker node.
2180 * @returns The added worker node key.
2181 * @throws {@link https://nodejs.org/api/errors.html#class-error} If the added worker node is not found.
2182 */
2183 private addWorkerNode (workerNode: IWorkerNode<Worker, Data>): number {
2184 this.workerNodes.push(workerNode)
2185 const workerNodeKey = this.workerNodes.indexOf(workerNode)
2186 if (workerNodeKey === -1) {
2187 throw new Error('Worker added not found in worker nodes')
2188 }
2189 return workerNodeKey
2190 }
2191
2192 private checkAndEmitEmptyEvent (): void {
2193 if (this.empty) {
2194 this.emitter?.emit(PoolEvents.empty, this.info)
2195 this.readyEventEmitted = false
2196 }
2197 }
2198
2199 /**
2200 * Removes the worker node from the pool worker nodes.
2201 * @param workerNode - The worker node.
2202 */
2203 private removeWorkerNode (workerNode: IWorkerNode<Worker, Data>): void {
2204 const workerNodeKey = this.workerNodes.indexOf(workerNode)
2205 if (workerNodeKey !== -1) {
2206 this.workerNodes.splice(workerNodeKey, 1)
2207 this.workerChoiceStrategiesContext?.remove(workerNodeKey)
2208 }
2209 this.checkAndEmitEmptyEvent()
2210 }
2211
2212 protected flagWorkerNodeAsNotReady (workerNodeKey: number): void {
2213 const workerInfo = this.getWorkerInfo(workerNodeKey)
2214 if (workerInfo != null) {
2215 workerInfo.ready = false
2216 }
2217 }
2218
2219 private hasBackPressure (): boolean {
2220 return (
2221 this.opts.enableTasksQueue === true &&
2222 this.workerNodes.findIndex(
2223 workerNode => !workerNode.hasBackPressure()
2224 ) === -1
2225 )
2226 }
2227
2228 /**
2229 * Executes the given task on the worker given its worker node key.
2230 * @param workerNodeKey - The worker node key.
2231 * @param task - The task to execute.
2232 */
2233 private executeTask (workerNodeKey: number, task: Task<Data>): void {
2234 this.beforeTaskExecutionHook(workerNodeKey, task)
2235 this.sendToWorker(workerNodeKey, task, task.transferList)
2236 this.checkAndEmitTaskExecutionEvents()
2237 }
2238
2239 private enqueueTask (workerNodeKey: number, task: Task<Data>): number {
2240 const tasksQueueSize = this.workerNodes[workerNodeKey].enqueueTask(task)
2241 this.checkAndEmitTaskQueuingEvents()
2242 return tasksQueueSize
2243 }
2244
2245 private dequeueTask (workerNodeKey: number): Task<Data> | undefined {
2246 return this.workerNodes[workerNodeKey].dequeueTask()
2247 }
2248
2249 private tasksQueueSize (workerNodeKey: number): number {
2250 return this.workerNodes[workerNodeKey].tasksQueueSize()
2251 }
2252
2253 protected flushTasksQueue (workerNodeKey: number): number {
2254 let flushedTasks = 0
2255 while (this.tasksQueueSize(workerNodeKey) > 0) {
2256 // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
2257 this.executeTask(workerNodeKey, this.dequeueTask(workerNodeKey)!)
2258 ++flushedTasks
2259 }
2260 this.workerNodes[workerNodeKey].clearTasksQueue()
2261 return flushedTasks
2262 }
2263
2264 private flushTasksQueues (): void {
2265 for (const workerNodeKey of this.workerNodes.keys()) {
2266 this.flushTasksQueue(workerNodeKey)
2267 }
2268 }
2269 }