Merge branch 'feature/task-functions' of github.com:poolifier/poolifier into feature...
[poolifier.git] / src / pools / abstract-pool.ts
1 import { randomUUID } from 'node:crypto'
2 import { performance } from 'node:perf_hooks'
3 import { existsSync } from 'node:fs'
4 import { type TransferListItem } from 'node:worker_threads'
5 import type {
6 MessageValue,
7 PromiseResponseWrapper,
8 Task
9 } from '../utility-types'
10 import {
11 DEFAULT_TASK_NAME,
12 DEFAULT_WORKER_CHOICE_STRATEGY_OPTIONS,
13 EMPTY_FUNCTION,
14 average,
15 isKillBehavior,
16 isPlainObject,
17 max,
18 median,
19 min,
20 round,
21 updateMeasurementStatistics
22 } from '../utils'
23 import { KillBehaviors } from '../worker/worker-options'
24 import type { TaskFunction } from '../worker/task-functions'
25 import {
26 type IPool,
27 PoolEmitter,
28 PoolEvents,
29 type PoolInfo,
30 type PoolOptions,
31 type PoolType,
32 PoolTypes,
33 type TasksQueueOptions
34 } from './pool'
35 import type {
36 IWorker,
37 IWorkerNode,
38 WorkerInfo,
39 WorkerType,
40 WorkerUsage
41 } from './worker'
42 import {
43 type MeasurementStatisticsRequirements,
44 Measurements,
45 WorkerChoiceStrategies,
46 type WorkerChoiceStrategy,
47 type WorkerChoiceStrategyOptions
48 } from './selection-strategies/selection-strategies-types'
49 import { WorkerChoiceStrategyContext } from './selection-strategies/worker-choice-strategy-context'
50 import { version } from './version'
51 import { WorkerNode } from './worker-node'
52
53 /**
54 * Base class that implements some shared logic for all poolifier pools.
55 *
56 * @typeParam Worker - Type of worker which manages this pool.
57 * @typeParam Data - Type of data sent to the worker. This can only be structured-cloneable data.
58 * @typeParam Response - Type of execution response. This can only be structured-cloneable data.
59 */
60 export abstract class AbstractPool<
61 Worker extends IWorker,
62 Data = unknown,
63 Response = unknown
64 > implements IPool<Worker, Data, Response> {
65 /** @inheritDoc */
66 public readonly workerNodes: Array<IWorkerNode<Worker, Data>> = []
67
68 /** @inheritDoc */
69 public readonly emitter?: PoolEmitter
70
71 /**
72 * The task execution response promise map:
73 * - `key`: The message id of each submitted task.
74 * - `value`: An object that contains the worker, the execution response promise resolve and reject callbacks.
75 *
76 * When we receive a message from the worker, we get a map entry with the promise resolve/reject bound to the message id.
77 */
78 protected promiseResponseMap: Map<string, PromiseResponseWrapper<Response>> =
79 new Map<string, PromiseResponseWrapper<Response>>()
80
81 /**
82 * Worker choice strategy context referencing a worker choice algorithm implementation.
83 */
84 protected workerChoiceStrategyContext: WorkerChoiceStrategyContext<
85 Worker,
86 Data,
87 Response
88 >
89
90 /**
91 * Dynamic pool maximum size property placeholder.
92 */
93 protected readonly max?: number
94
95 /**
96 * The task functions added at runtime map:
97 * - `key`: The task function name.
98 * - `value`: The task function itself.
99 */
100 private readonly taskFunctions: Map<string, TaskFunction<Data, Response>>
101
102 /**
103 * Whether the pool is started or not.
104 */
105 private started: boolean
106 /**
107 * Whether the pool is starting or not.
108 */
109 private starting: boolean
110 /**
111 * The start timestamp of the pool.
112 */
113 private readonly startTimestamp
114
115 /**
116 * Constructs a new poolifier pool.
117 *
118 * @param numberOfWorkers - Number of workers that this pool should manage.
119 * @param filePath - Path to the worker file.
120 * @param opts - Options for the pool.
121 */
122 public constructor (
123 protected readonly numberOfWorkers: number,
124 protected readonly filePath: string,
125 protected readonly opts: PoolOptions<Worker>
126 ) {
127 if (!this.isMain()) {
128 throw new Error(
129 'Cannot start a pool from a worker with the same type as the pool'
130 )
131 }
132 this.checkNumberOfWorkers(this.numberOfWorkers)
133 this.checkFilePath(this.filePath)
134 this.checkPoolOptions(this.opts)
135
136 this.chooseWorkerNode = this.chooseWorkerNode.bind(this)
137 this.executeTask = this.executeTask.bind(this)
138 this.enqueueTask = this.enqueueTask.bind(this)
139
140 if (this.opts.enableEvents === true) {
141 this.emitter = new PoolEmitter()
142 }
143 this.workerChoiceStrategyContext = new WorkerChoiceStrategyContext<
144 Worker,
145 Data,
146 Response
147 >(
148 this,
149 this.opts.workerChoiceStrategy,
150 this.opts.workerChoiceStrategyOptions
151 )
152
153 this.setupHook()
154
155 this.taskFunctions = new Map<string, TaskFunction<Data, Response>>()
156
157 this.started = false
158 this.starting = false
159 if (this.opts.startWorkers === true) {
160 this.start()
161 }
162
163 this.startTimestamp = performance.now()
164 }
165
166 private checkFilePath (filePath: string): void {
167 if (
168 filePath == null ||
169 typeof filePath !== 'string' ||
170 (typeof filePath === 'string' && filePath.trim().length === 0)
171 ) {
172 throw new Error('Please specify a file with a worker implementation')
173 }
174 if (!existsSync(filePath)) {
175 throw new Error(`Cannot find the worker file '${filePath}'`)
176 }
177 }
178
179 private checkNumberOfWorkers (numberOfWorkers: number): void {
180 if (numberOfWorkers == null) {
181 throw new Error(
182 'Cannot instantiate a pool without specifying the number of workers'
183 )
184 } else if (!Number.isSafeInteger(numberOfWorkers)) {
185 throw new TypeError(
186 'Cannot instantiate a pool with a non safe integer number of workers'
187 )
188 } else if (numberOfWorkers < 0) {
189 throw new RangeError(
190 'Cannot instantiate a pool with a negative number of workers'
191 )
192 } else if (this.type === PoolTypes.fixed && numberOfWorkers === 0) {
193 throw new RangeError('Cannot instantiate a fixed pool with zero worker')
194 }
195 }
196
197 protected checkDynamicPoolSize (min: number, max: number): void {
198 if (this.type === PoolTypes.dynamic) {
199 if (max == null) {
200 throw new TypeError(
201 'Cannot instantiate a dynamic pool without specifying the maximum pool size'
202 )
203 } else if (!Number.isSafeInteger(max)) {
204 throw new TypeError(
205 'Cannot instantiate a dynamic pool with a non safe integer maximum pool size'
206 )
207 } else if (min > max) {
208 throw new RangeError(
209 'Cannot instantiate a dynamic pool with a maximum pool size inferior to the minimum pool size'
210 )
211 } else if (max === 0) {
212 throw new RangeError(
213 'Cannot instantiate a dynamic pool with a maximum pool size equal to zero'
214 )
215 } else if (min === max) {
216 throw new RangeError(
217 'Cannot instantiate a dynamic pool with a minimum pool size equal to the maximum pool size. Use a fixed pool instead'
218 )
219 }
220 }
221 }
222
223 private checkPoolOptions (opts: PoolOptions<Worker>): void {
224 if (isPlainObject(opts)) {
225 this.opts.startWorkers = opts.startWorkers ?? true
226 this.checkValidWorkerChoiceStrategy(
227 opts.workerChoiceStrategy as WorkerChoiceStrategy
228 )
229 this.opts.workerChoiceStrategy =
230 opts.workerChoiceStrategy ?? WorkerChoiceStrategies.ROUND_ROBIN
231 this.checkValidWorkerChoiceStrategyOptions(
232 opts.workerChoiceStrategyOptions as WorkerChoiceStrategyOptions
233 )
234 this.opts.workerChoiceStrategyOptions = {
235 ...DEFAULT_WORKER_CHOICE_STRATEGY_OPTIONS,
236 ...opts.workerChoiceStrategyOptions
237 }
238 this.opts.restartWorkerOnError = opts.restartWorkerOnError ?? true
239 this.opts.enableEvents = opts.enableEvents ?? true
240 this.opts.enableTasksQueue = opts.enableTasksQueue ?? false
241 if (this.opts.enableTasksQueue) {
242 this.checkValidTasksQueueOptions(
243 opts.tasksQueueOptions as TasksQueueOptions
244 )
245 this.opts.tasksQueueOptions = this.buildTasksQueueOptions(
246 opts.tasksQueueOptions as TasksQueueOptions
247 )
248 }
249 } else {
250 throw new TypeError('Invalid pool options: must be a plain object')
251 }
252 }
253
254 private checkValidWorkerChoiceStrategy (
255 workerChoiceStrategy: WorkerChoiceStrategy
256 ): void {
257 if (
258 workerChoiceStrategy != null &&
259 !Object.values(WorkerChoiceStrategies).includes(workerChoiceStrategy)
260 ) {
261 throw new Error(
262 `Invalid worker choice strategy '${workerChoiceStrategy}'`
263 )
264 }
265 }
266
267 private checkValidWorkerChoiceStrategyOptions (
268 workerChoiceStrategyOptions: WorkerChoiceStrategyOptions
269 ): void {
270 if (
271 workerChoiceStrategyOptions != null &&
272 !isPlainObject(workerChoiceStrategyOptions)
273 ) {
274 throw new TypeError(
275 'Invalid worker choice strategy options: must be a plain object'
276 )
277 }
278 if (
279 workerChoiceStrategyOptions?.retries != null &&
280 !Number.isSafeInteger(workerChoiceStrategyOptions.retries)
281 ) {
282 throw new TypeError(
283 'Invalid worker choice strategy options: retries must be an integer'
284 )
285 }
286 if (
287 workerChoiceStrategyOptions?.retries != null &&
288 workerChoiceStrategyOptions.retries < 0
289 ) {
290 throw new RangeError(
291 `Invalid worker choice strategy options: retries '${workerChoiceStrategyOptions.retries}' must be greater or equal than zero`
292 )
293 }
294 if (
295 workerChoiceStrategyOptions?.weights != null &&
296 Object.keys(workerChoiceStrategyOptions.weights).length !== this.maxSize
297 ) {
298 throw new Error(
299 'Invalid worker choice strategy options: must have a weight for each worker node'
300 )
301 }
302 if (
303 workerChoiceStrategyOptions?.measurement != null &&
304 !Object.values(Measurements).includes(
305 workerChoiceStrategyOptions.measurement
306 )
307 ) {
308 throw new Error(
309 `Invalid worker choice strategy options: invalid measurement '${workerChoiceStrategyOptions.measurement}'`
310 )
311 }
312 }
313
314 private checkValidTasksQueueOptions (
315 tasksQueueOptions: TasksQueueOptions
316 ): void {
317 if (tasksQueueOptions != null && !isPlainObject(tasksQueueOptions)) {
318 throw new TypeError('Invalid tasks queue options: must be a plain object')
319 }
320 if (
321 tasksQueueOptions?.concurrency != null &&
322 !Number.isSafeInteger(tasksQueueOptions.concurrency)
323 ) {
324 throw new TypeError(
325 'Invalid worker node tasks concurrency: must be an integer'
326 )
327 }
328 if (
329 tasksQueueOptions?.concurrency != null &&
330 tasksQueueOptions.concurrency <= 0
331 ) {
332 throw new RangeError(
333 `Invalid worker node tasks concurrency: ${tasksQueueOptions.concurrency} is a negative integer or zero`
334 )
335 }
336 if (
337 tasksQueueOptions?.size != null &&
338 !Number.isSafeInteger(tasksQueueOptions.size)
339 ) {
340 throw new TypeError(
341 'Invalid worker node tasks queue size: must be an integer'
342 )
343 }
344 if (tasksQueueOptions?.size != null && tasksQueueOptions.size <= 0) {
345 throw new RangeError(
346 `Invalid worker node tasks queue size: ${tasksQueueOptions.size} is a negative integer or zero`
347 )
348 }
349 }
350
351 /** @inheritDoc */
352 public get info (): PoolInfo {
353 return {
354 version,
355 type: this.type,
356 worker: this.worker,
357 started: this.started,
358 ready: this.ready,
359 strategy: this.opts.workerChoiceStrategy as WorkerChoiceStrategy,
360 minSize: this.minSize,
361 maxSize: this.maxSize,
362 ...(this.workerChoiceStrategyContext.getTaskStatisticsRequirements()
363 .runTime.aggregate &&
364 this.workerChoiceStrategyContext.getTaskStatisticsRequirements()
365 .waitTime.aggregate && { utilization: round(this.utilization) }),
366 workerNodes: this.workerNodes.length,
367 idleWorkerNodes: this.workerNodes.reduce(
368 (accumulator, workerNode) =>
369 workerNode.usage.tasks.executing === 0
370 ? accumulator + 1
371 : accumulator,
372 0
373 ),
374 busyWorkerNodes: this.workerNodes.reduce(
375 (accumulator, workerNode) =>
376 workerNode.usage.tasks.executing > 0 ? accumulator + 1 : accumulator,
377 0
378 ),
379 executedTasks: this.workerNodes.reduce(
380 (accumulator, workerNode) =>
381 accumulator + workerNode.usage.tasks.executed,
382 0
383 ),
384 executingTasks: this.workerNodes.reduce(
385 (accumulator, workerNode) =>
386 accumulator + workerNode.usage.tasks.executing,
387 0
388 ),
389 ...(this.opts.enableTasksQueue === true && {
390 queuedTasks: this.workerNodes.reduce(
391 (accumulator, workerNode) =>
392 accumulator + workerNode.usage.tasks.queued,
393 0
394 )
395 }),
396 ...(this.opts.enableTasksQueue === true && {
397 maxQueuedTasks: this.workerNodes.reduce(
398 (accumulator, workerNode) =>
399 accumulator + (workerNode.usage.tasks?.maxQueued ?? 0),
400 0
401 )
402 }),
403 ...(this.opts.enableTasksQueue === true && {
404 backPressure: this.hasBackPressure()
405 }),
406 ...(this.opts.enableTasksQueue === true && {
407 stolenTasks: this.workerNodes.reduce(
408 (accumulator, workerNode) =>
409 accumulator + workerNode.usage.tasks.stolen,
410 0
411 )
412 }),
413 failedTasks: this.workerNodes.reduce(
414 (accumulator, workerNode) =>
415 accumulator + workerNode.usage.tasks.failed,
416 0
417 ),
418 ...(this.workerChoiceStrategyContext.getTaskStatisticsRequirements()
419 .runTime.aggregate && {
420 runTime: {
421 minimum: round(
422 min(
423 ...this.workerNodes.map(
424 workerNode => workerNode.usage.runTime?.minimum ?? Infinity
425 )
426 )
427 ),
428 maximum: round(
429 max(
430 ...this.workerNodes.map(
431 workerNode => workerNode.usage.runTime?.maximum ?? -Infinity
432 )
433 )
434 ),
435 ...(this.workerChoiceStrategyContext.getTaskStatisticsRequirements()
436 .runTime.average && {
437 average: round(
438 average(
439 this.workerNodes.reduce<number[]>(
440 (accumulator, workerNode) =>
441 accumulator.concat(workerNode.usage.runTime.history),
442 []
443 )
444 )
445 )
446 }),
447 ...(this.workerChoiceStrategyContext.getTaskStatisticsRequirements()
448 .runTime.median && {
449 median: round(
450 median(
451 this.workerNodes.reduce<number[]>(
452 (accumulator, workerNode) =>
453 accumulator.concat(workerNode.usage.runTime.history),
454 []
455 )
456 )
457 )
458 })
459 }
460 }),
461 ...(this.workerChoiceStrategyContext.getTaskStatisticsRequirements()
462 .waitTime.aggregate && {
463 waitTime: {
464 minimum: round(
465 min(
466 ...this.workerNodes.map(
467 workerNode => workerNode.usage.waitTime?.minimum ?? Infinity
468 )
469 )
470 ),
471 maximum: round(
472 max(
473 ...this.workerNodes.map(
474 workerNode => workerNode.usage.waitTime?.maximum ?? -Infinity
475 )
476 )
477 ),
478 ...(this.workerChoiceStrategyContext.getTaskStatisticsRequirements()
479 .waitTime.average && {
480 average: round(
481 average(
482 this.workerNodes.reduce<number[]>(
483 (accumulator, workerNode) =>
484 accumulator.concat(workerNode.usage.waitTime.history),
485 []
486 )
487 )
488 )
489 }),
490 ...(this.workerChoiceStrategyContext.getTaskStatisticsRequirements()
491 .waitTime.median && {
492 median: round(
493 median(
494 this.workerNodes.reduce<number[]>(
495 (accumulator, workerNode) =>
496 accumulator.concat(workerNode.usage.waitTime.history),
497 []
498 )
499 )
500 )
501 })
502 }
503 })
504 }
505 }
506
507 /**
508 * The pool readiness boolean status.
509 */
510 private get ready (): boolean {
511 return (
512 this.workerNodes.reduce(
513 (accumulator, workerNode) =>
514 !workerNode.info.dynamic && workerNode.info.ready
515 ? accumulator + 1
516 : accumulator,
517 0
518 ) >= this.minSize
519 )
520 }
521
522 /**
523 * The approximate pool utilization.
524 *
525 * @returns The pool utilization.
526 */
527 private get utilization (): number {
528 const poolTimeCapacity =
529 (performance.now() - this.startTimestamp) * this.maxSize
530 const totalTasksRunTime = this.workerNodes.reduce(
531 (accumulator, workerNode) =>
532 accumulator + (workerNode.usage.runTime?.aggregate ?? 0),
533 0
534 )
535 const totalTasksWaitTime = this.workerNodes.reduce(
536 (accumulator, workerNode) =>
537 accumulator + (workerNode.usage.waitTime?.aggregate ?? 0),
538 0
539 )
540 return (totalTasksRunTime + totalTasksWaitTime) / poolTimeCapacity
541 }
542
543 /**
544 * The pool type.
545 *
546 * If it is `'dynamic'`, it provides the `max` property.
547 */
548 protected abstract get type (): PoolType
549
550 /**
551 * The worker type.
552 */
553 protected abstract get worker (): WorkerType
554
555 /**
556 * The pool minimum size.
557 */
558 protected get minSize (): number {
559 return this.numberOfWorkers
560 }
561
562 /**
563 * The pool maximum size.
564 */
565 protected get maxSize (): number {
566 return this.max ?? this.numberOfWorkers
567 }
568
569 /**
570 * Checks if the worker id sent in the received message from a worker is valid.
571 *
572 * @param message - The received message.
573 * @throws {@link https://nodejs.org/api/errors.html#class-error} If the worker id is invalid.
574 */
575 private checkMessageWorkerId (message: MessageValue<Response>): void {
576 if (message.workerId == null) {
577 throw new Error('Worker message received without worker id')
578 } else if (
579 message.workerId != null &&
580 this.getWorkerNodeKeyByWorkerId(message.workerId) === -1
581 ) {
582 throw new Error(
583 `Worker message received from unknown worker '${message.workerId}'`
584 )
585 }
586 }
587
588 /**
589 * Gets the given worker its worker node key.
590 *
591 * @param worker - The worker.
592 * @returns The worker node key if found in the pool worker nodes, `-1` otherwise.
593 */
594 private getWorkerNodeKeyByWorker (worker: Worker): number {
595 return this.workerNodes.findIndex(
596 workerNode => workerNode.worker === worker
597 )
598 }
599
600 /**
601 * Gets the worker node key given its worker id.
602 *
603 * @param workerId - The worker id.
604 * @returns The worker node key if the worker id is found in the pool worker nodes, `-1` otherwise.
605 */
606 private getWorkerNodeKeyByWorkerId (workerId: number | undefined): number {
607 return this.workerNodes.findIndex(
608 workerNode => workerNode.info.id === workerId
609 )
610 }
611
612 /** @inheritDoc */
613 public setWorkerChoiceStrategy (
614 workerChoiceStrategy: WorkerChoiceStrategy,
615 workerChoiceStrategyOptions?: WorkerChoiceStrategyOptions
616 ): void {
617 this.checkValidWorkerChoiceStrategy(workerChoiceStrategy)
618 this.opts.workerChoiceStrategy = workerChoiceStrategy
619 this.workerChoiceStrategyContext.setWorkerChoiceStrategy(
620 this.opts.workerChoiceStrategy
621 )
622 if (workerChoiceStrategyOptions != null) {
623 this.setWorkerChoiceStrategyOptions(workerChoiceStrategyOptions)
624 }
625 for (const [workerNodeKey, workerNode] of this.workerNodes.entries()) {
626 workerNode.resetUsage()
627 this.sendStatisticsMessageToWorker(workerNodeKey)
628 }
629 }
630
631 /** @inheritDoc */
632 public setWorkerChoiceStrategyOptions (
633 workerChoiceStrategyOptions: WorkerChoiceStrategyOptions
634 ): void {
635 this.checkValidWorkerChoiceStrategyOptions(workerChoiceStrategyOptions)
636 this.opts.workerChoiceStrategyOptions = {
637 ...DEFAULT_WORKER_CHOICE_STRATEGY_OPTIONS,
638 ...workerChoiceStrategyOptions
639 }
640 this.workerChoiceStrategyContext.setOptions(
641 this.opts.workerChoiceStrategyOptions
642 )
643 }
644
645 /** @inheritDoc */
646 public enableTasksQueue (
647 enable: boolean,
648 tasksQueueOptions?: TasksQueueOptions
649 ): void {
650 if (this.opts.enableTasksQueue === true && !enable) {
651 this.unsetTaskStealing()
652 this.unsetTasksStealingOnBackPressure()
653 this.flushTasksQueues()
654 }
655 this.opts.enableTasksQueue = enable
656 this.setTasksQueueOptions(tasksQueueOptions as TasksQueueOptions)
657 }
658
659 /** @inheritDoc */
660 public setTasksQueueOptions (tasksQueueOptions: TasksQueueOptions): void {
661 if (this.opts.enableTasksQueue === true) {
662 this.checkValidTasksQueueOptions(tasksQueueOptions)
663 this.opts.tasksQueueOptions =
664 this.buildTasksQueueOptions(tasksQueueOptions)
665 this.setTasksQueueSize(this.opts.tasksQueueOptions.size as number)
666 if (this.opts.tasksQueueOptions.taskStealing === true) {
667 this.setTaskStealing()
668 } else {
669 this.unsetTaskStealing()
670 }
671 if (this.opts.tasksQueueOptions.tasksStealingOnBackPressure === true) {
672 this.setTasksStealingOnBackPressure()
673 } else {
674 this.unsetTasksStealingOnBackPressure()
675 }
676 } else if (this.opts.tasksQueueOptions != null) {
677 delete this.opts.tasksQueueOptions
678 }
679 }
680
681 private buildTasksQueueOptions (
682 tasksQueueOptions: TasksQueueOptions
683 ): TasksQueueOptions {
684 return {
685 ...{
686 size: Math.pow(this.maxSize, 2),
687 concurrency: 1,
688 taskStealing: true,
689 tasksStealingOnBackPressure: true
690 },
691 ...tasksQueueOptions
692 }
693 }
694
695 private setTasksQueueSize (size: number): void {
696 for (const workerNode of this.workerNodes) {
697 workerNode.tasksQueueBackPressureSize = size
698 }
699 }
700
701 private setTaskStealing (): void {
702 for (const [workerNodeKey] of this.workerNodes.entries()) {
703 this.workerNodes[workerNodeKey].onEmptyQueue =
704 this.taskStealingOnEmptyQueue.bind(this)
705 }
706 }
707
708 private unsetTaskStealing (): void {
709 for (const [workerNodeKey] of this.workerNodes.entries()) {
710 delete this.workerNodes[workerNodeKey].onEmptyQueue
711 }
712 }
713
714 private setTasksStealingOnBackPressure (): void {
715 for (const [workerNodeKey] of this.workerNodes.entries()) {
716 this.workerNodes[workerNodeKey].onBackPressure =
717 this.tasksStealingOnBackPressure.bind(this)
718 }
719 }
720
721 private unsetTasksStealingOnBackPressure (): void {
722 for (const [workerNodeKey] of this.workerNodes.entries()) {
723 delete this.workerNodes[workerNodeKey].onBackPressure
724 }
725 }
726
727 /**
728 * Whether the pool is full or not.
729 *
730 * The pool filling boolean status.
731 */
732 protected get full (): boolean {
733 return this.workerNodes.length >= this.maxSize
734 }
735
736 /**
737 * Whether the pool is busy or not.
738 *
739 * The pool busyness boolean status.
740 */
741 protected abstract get busy (): boolean
742
743 /**
744 * Whether worker nodes are executing concurrently their tasks quota or not.
745 *
746 * @returns Worker nodes busyness boolean status.
747 */
748 protected internalBusy (): boolean {
749 if (this.opts.enableTasksQueue === true) {
750 return (
751 this.workerNodes.findIndex(
752 workerNode =>
753 workerNode.info.ready &&
754 workerNode.usage.tasks.executing <
755 (this.opts.tasksQueueOptions?.concurrency as number)
756 ) === -1
757 )
758 }
759 return (
760 this.workerNodes.findIndex(
761 workerNode =>
762 workerNode.info.ready && workerNode.usage.tasks.executing === 0
763 ) === -1
764 )
765 }
766
767 private async sendTaskFunctionOperationToWorker (
768 workerNodeKey: number,
769 message: MessageValue<Data>
770 ): Promise<boolean> {
771 const workerId = this.getWorkerInfo(workerNodeKey).id as number
772 return await new Promise<boolean>((resolve, reject) => {
773 this.registerWorkerMessageListener(workerNodeKey, message => {
774 if (
775 message.workerId === workerId &&
776 message.taskFunctionOperationStatus === true
777 ) {
778 resolve(true)
779 } else if (
780 message.workerId === workerId &&
781 message.taskFunctionOperationStatus === false
782 ) {
783 reject(
784 new Error(
785 `Task function operation ${
786 message.taskFunctionOperation as string
787 } failed on worker ${message.workerId}`
788 )
789 )
790 }
791 })
792 this.sendToWorker(workerNodeKey, message)
793 })
794 }
795
796 private async sendTaskFunctionOperationToWorkers (
797 message: Omit<MessageValue<Data>, 'workerId'>
798 ): Promise<boolean> {
799 return await new Promise<boolean>((resolve, reject) => {
800 const responsesReceived = new Array<MessageValue<Data | Response>>()
801 for (const [workerNodeKey] of this.workerNodes.entries()) {
802 this.registerWorkerMessageListener(workerNodeKey, message => {
803 if (message.taskFunctionOperationStatus != null) {
804 responsesReceived.push(message)
805 if (
806 responsesReceived.length === this.workerNodes.length &&
807 responsesReceived.every(
808 message => message.taskFunctionOperationStatus === true
809 )
810 ) {
811 resolve(true)
812 } else if (
813 responsesReceived.length === this.workerNodes.length &&
814 responsesReceived.some(
815 message => message.taskFunctionOperationStatus === false
816 )
817 ) {
818 reject(
819 new Error(
820 `Task function operation ${
821 message.taskFunctionOperation as string
822 } failed on worker ${message.workerId as number}`
823 )
824 )
825 }
826 }
827 })
828 this.sendToWorker(workerNodeKey, message)
829 }
830 })
831 }
832
833 /** @inheritDoc */
834 public hasTaskFunction (name: string): boolean {
835 for (const workerNode of this.workerNodes) {
836 if (
837 Array.isArray(workerNode.info.taskFunctionNames) &&
838 workerNode.info.taskFunctionNames.includes(name)
839 ) {
840 return true
841 }
842 }
843 return false
844 }
845
846 /** @inheritDoc */
847 public async addTaskFunction (
848 name: string,
849 taskFunction: TaskFunction<Data, Response>
850 ): Promise<boolean> {
851 this.taskFunctions.set(name, taskFunction)
852 return await this.sendTaskFunctionOperationToWorkers({
853 taskFunctionOperation: 'add',
854 taskFunctionName: name,
855 taskFunction: taskFunction.toString()
856 })
857 }
858
859 /** @inheritDoc */
860 public async removeTaskFunction (name: string): Promise<boolean> {
861 if (!this.taskFunctions.has(name)) {
862 throw new Error(
863 'Cannot remove a task function not handled on the pool side'
864 )
865 }
866 this.taskFunctions.delete(name)
867 return await this.sendTaskFunctionOperationToWorkers({
868 taskFunctionOperation: 'remove',
869 taskFunctionName: name
870 })
871 }
872
873 /** @inheritDoc */
874 public listTaskFunctionNames (): string[] {
875 for (const workerNode of this.workerNodes) {
876 if (
877 Array.isArray(workerNode.info.taskFunctionNames) &&
878 workerNode.info.taskFunctionNames.length > 0
879 ) {
880 return workerNode.info.taskFunctionNames
881 }
882 }
883 return []
884 }
885
886 /** @inheritDoc */
887 public async setDefaultTaskFunction (name: string): Promise<boolean> {
888 return await this.sendTaskFunctionOperationToWorkers({
889 taskFunctionOperation: 'default',
890 taskFunctionName: name
891 })
892 }
893
894 private shallExecuteTask (workerNodeKey: number): boolean {
895 return (
896 this.tasksQueueSize(workerNodeKey) === 0 &&
897 this.workerNodes[workerNodeKey].usage.tasks.executing <
898 (this.opts.tasksQueueOptions?.concurrency as number)
899 )
900 }
901
902 /** @inheritDoc */
903 public async execute (
904 data?: Data,
905 name?: string,
906 transferList?: TransferListItem[]
907 ): Promise<Response> {
908 return await new Promise<Response>((resolve, reject) => {
909 if (!this.started) {
910 reject(new Error('Cannot execute a task on not started pool'))
911 return
912 }
913 if (name != null && typeof name !== 'string') {
914 reject(new TypeError('name argument must be a string'))
915 return
916 }
917 if (
918 name != null &&
919 typeof name === 'string' &&
920 name.trim().length === 0
921 ) {
922 reject(new TypeError('name argument must not be an empty string'))
923 return
924 }
925 if (transferList != null && !Array.isArray(transferList)) {
926 reject(new TypeError('transferList argument must be an array'))
927 return
928 }
929 const timestamp = performance.now()
930 const workerNodeKey = this.chooseWorkerNode()
931 const task: Task<Data> = {
932 name: name ?? DEFAULT_TASK_NAME,
933 // eslint-disable-next-line @typescript-eslint/consistent-type-assertions
934 data: data ?? ({} as Data),
935 transferList,
936 timestamp,
937 taskId: randomUUID()
938 }
939 this.promiseResponseMap.set(task.taskId as string, {
940 resolve,
941 reject,
942 workerNodeKey
943 })
944 if (
945 this.opts.enableTasksQueue === false ||
946 (this.opts.enableTasksQueue === true &&
947 this.shallExecuteTask(workerNodeKey))
948 ) {
949 this.executeTask(workerNodeKey, task)
950 } else {
951 this.enqueueTask(workerNodeKey, task)
952 }
953 })
954 }
955
956 /** @inheritdoc */
957 public start (): void {
958 this.starting = true
959 while (
960 this.workerNodes.reduce(
961 (accumulator, workerNode) =>
962 !workerNode.info.dynamic ? accumulator + 1 : accumulator,
963 0
964 ) < this.numberOfWorkers
965 ) {
966 this.createAndSetupWorkerNode()
967 }
968 this.starting = false
969 this.started = true
970 }
971
972 /** @inheritDoc */
973 public async destroy (): Promise<void> {
974 await Promise.all(
975 this.workerNodes.map(async (_, workerNodeKey) => {
976 await this.destroyWorkerNode(workerNodeKey)
977 })
978 )
979 this.emitter?.emit(PoolEvents.destroy, this.info)
980 this.started = false
981 }
982
983 protected async sendKillMessageToWorker (
984 workerNodeKey: number
985 ): Promise<void> {
986 await new Promise<void>((resolve, reject) => {
987 this.registerWorkerMessageListener(workerNodeKey, message => {
988 if (message.kill === 'success') {
989 resolve()
990 } else if (message.kill === 'failure') {
991 reject(
992 new Error(
993 `Worker ${
994 message.workerId as number
995 } kill message handling failed`
996 )
997 )
998 }
999 })
1000 this.sendToWorker(workerNodeKey, { kill: true })
1001 })
1002 }
1003
1004 /**
1005 * Terminates the worker node given its worker node key.
1006 *
1007 * @param workerNodeKey - The worker node key.
1008 */
1009 protected abstract destroyWorkerNode (workerNodeKey: number): Promise<void>
1010
1011 /**
1012 * Setup hook to execute code before worker nodes are created in the abstract constructor.
1013 * Can be overridden.
1014 *
1015 * @virtual
1016 */
1017 protected setupHook (): void {
1018 /* Intentionally empty */
1019 }
1020
1021 /**
1022 * Should return whether the worker is the main worker or not.
1023 */
1024 protected abstract isMain (): boolean
1025
1026 /**
1027 * Hook executed before the worker task execution.
1028 * Can be overridden.
1029 *
1030 * @param workerNodeKey - The worker node key.
1031 * @param task - The task to execute.
1032 */
1033 protected beforeTaskExecutionHook (
1034 workerNodeKey: number,
1035 task: Task<Data>
1036 ): void {
1037 if (this.workerNodes[workerNodeKey]?.usage != null) {
1038 const workerUsage = this.workerNodes[workerNodeKey].usage
1039 ++workerUsage.tasks.executing
1040 this.updateWaitTimeWorkerUsage(workerUsage, task)
1041 }
1042 if (
1043 this.shallUpdateTaskFunctionWorkerUsage(workerNodeKey) &&
1044 this.workerNodes[workerNodeKey].getTaskFunctionWorkerUsage(
1045 task.name as string
1046 ) != null
1047 ) {
1048 const taskFunctionWorkerUsage = this.workerNodes[
1049 workerNodeKey
1050 ].getTaskFunctionWorkerUsage(task.name as string) as WorkerUsage
1051 ++taskFunctionWorkerUsage.tasks.executing
1052 this.updateWaitTimeWorkerUsage(taskFunctionWorkerUsage, task)
1053 }
1054 }
1055
1056 /**
1057 * Hook executed after the worker task execution.
1058 * Can be overridden.
1059 *
1060 * @param workerNodeKey - The worker node key.
1061 * @param message - The received message.
1062 */
1063 protected afterTaskExecutionHook (
1064 workerNodeKey: number,
1065 message: MessageValue<Response>
1066 ): void {
1067 if (this.workerNodes[workerNodeKey]?.usage != null) {
1068 const workerUsage = this.workerNodes[workerNodeKey].usage
1069 this.updateTaskStatisticsWorkerUsage(workerUsage, message)
1070 this.updateRunTimeWorkerUsage(workerUsage, message)
1071 this.updateEluWorkerUsage(workerUsage, message)
1072 }
1073 if (
1074 this.shallUpdateTaskFunctionWorkerUsage(workerNodeKey) &&
1075 this.workerNodes[workerNodeKey].getTaskFunctionWorkerUsage(
1076 message.taskPerformance?.name as string
1077 ) != null
1078 ) {
1079 const taskFunctionWorkerUsage = this.workerNodes[
1080 workerNodeKey
1081 ].getTaskFunctionWorkerUsage(
1082 message.taskPerformance?.name as string
1083 ) as WorkerUsage
1084 this.updateTaskStatisticsWorkerUsage(taskFunctionWorkerUsage, message)
1085 this.updateRunTimeWorkerUsage(taskFunctionWorkerUsage, message)
1086 this.updateEluWorkerUsage(taskFunctionWorkerUsage, message)
1087 }
1088 }
1089
1090 /**
1091 * Whether the worker node shall update its task function worker usage or not.
1092 *
1093 * @param workerNodeKey - The worker node key.
1094 * @returns `true` if the worker node shall update its task function worker usage, `false` otherwise.
1095 */
1096 private shallUpdateTaskFunctionWorkerUsage (workerNodeKey: number): boolean {
1097 const workerInfo = this.getWorkerInfo(workerNodeKey)
1098 return (
1099 workerInfo != null &&
1100 Array.isArray(workerInfo.taskFunctionNames) &&
1101 workerInfo.taskFunctionNames.length > 2
1102 )
1103 }
1104
1105 private updateTaskStatisticsWorkerUsage (
1106 workerUsage: WorkerUsage,
1107 message: MessageValue<Response>
1108 ): void {
1109 const workerTaskStatistics = workerUsage.tasks
1110 if (
1111 workerTaskStatistics.executing != null &&
1112 workerTaskStatistics.executing > 0
1113 ) {
1114 --workerTaskStatistics.executing
1115 }
1116 if (message.workerError == null) {
1117 ++workerTaskStatistics.executed
1118 } else {
1119 ++workerTaskStatistics.failed
1120 }
1121 }
1122
1123 private updateRunTimeWorkerUsage (
1124 workerUsage: WorkerUsage,
1125 message: MessageValue<Response>
1126 ): void {
1127 if (message.workerError != null) {
1128 return
1129 }
1130 updateMeasurementStatistics(
1131 workerUsage.runTime,
1132 this.workerChoiceStrategyContext.getTaskStatisticsRequirements().runTime,
1133 message.taskPerformance?.runTime ?? 0
1134 )
1135 }
1136
1137 private updateWaitTimeWorkerUsage (
1138 workerUsage: WorkerUsage,
1139 task: Task<Data>
1140 ): void {
1141 const timestamp = performance.now()
1142 const taskWaitTime = timestamp - (task.timestamp ?? timestamp)
1143 updateMeasurementStatistics(
1144 workerUsage.waitTime,
1145 this.workerChoiceStrategyContext.getTaskStatisticsRequirements().waitTime,
1146 taskWaitTime
1147 )
1148 }
1149
1150 private updateEluWorkerUsage (
1151 workerUsage: WorkerUsage,
1152 message: MessageValue<Response>
1153 ): void {
1154 if (message.workerError != null) {
1155 return
1156 }
1157 const eluTaskStatisticsRequirements: MeasurementStatisticsRequirements =
1158 this.workerChoiceStrategyContext.getTaskStatisticsRequirements().elu
1159 updateMeasurementStatistics(
1160 workerUsage.elu.active,
1161 eluTaskStatisticsRequirements,
1162 message.taskPerformance?.elu?.active ?? 0
1163 )
1164 updateMeasurementStatistics(
1165 workerUsage.elu.idle,
1166 eluTaskStatisticsRequirements,
1167 message.taskPerformance?.elu?.idle ?? 0
1168 )
1169 if (eluTaskStatisticsRequirements.aggregate) {
1170 if (message.taskPerformance?.elu != null) {
1171 if (workerUsage.elu.utilization != null) {
1172 workerUsage.elu.utilization =
1173 (workerUsage.elu.utilization +
1174 message.taskPerformance.elu.utilization) /
1175 2
1176 } else {
1177 workerUsage.elu.utilization = message.taskPerformance.elu.utilization
1178 }
1179 }
1180 }
1181 }
1182
1183 /**
1184 * Chooses a worker node for the next task.
1185 *
1186 * The default worker choice strategy uses a round robin algorithm to distribute the tasks.
1187 *
1188 * @returns The chosen worker node key
1189 */
1190 private chooseWorkerNode (): number {
1191 if (this.shallCreateDynamicWorker()) {
1192 const workerNodeKey = this.createAndSetupDynamicWorkerNode()
1193 if (
1194 this.workerChoiceStrategyContext.getStrategyPolicy().dynamicWorkerUsage
1195 ) {
1196 return workerNodeKey
1197 }
1198 }
1199 return this.workerChoiceStrategyContext.execute()
1200 }
1201
1202 /**
1203 * Conditions for dynamic worker creation.
1204 *
1205 * @returns Whether to create a dynamic worker or not.
1206 */
1207 private shallCreateDynamicWorker (): boolean {
1208 return this.type === PoolTypes.dynamic && !this.full && this.internalBusy()
1209 }
1210
1211 /**
1212 * Sends a message to worker given its worker node key.
1213 *
1214 * @param workerNodeKey - The worker node key.
1215 * @param message - The message.
1216 * @param transferList - The optional array of transferable objects.
1217 */
1218 protected abstract sendToWorker (
1219 workerNodeKey: number,
1220 message: MessageValue<Data>,
1221 transferList?: TransferListItem[]
1222 ): void
1223
1224 /**
1225 * Creates a new worker.
1226 *
1227 * @returns Newly created worker.
1228 */
1229 protected abstract createWorker (): Worker
1230
1231 /**
1232 * Creates a new, completely set up worker node.
1233 *
1234 * @returns New, completely set up worker node key.
1235 */
1236 protected createAndSetupWorkerNode (): number {
1237 const worker = this.createWorker()
1238
1239 worker.on('online', this.opts.onlineHandler ?? EMPTY_FUNCTION)
1240 worker.on('message', this.opts.messageHandler ?? EMPTY_FUNCTION)
1241 worker.on('error', this.opts.errorHandler ?? EMPTY_FUNCTION)
1242 worker.on('error', error => {
1243 const workerNodeKey = this.getWorkerNodeKeyByWorker(worker)
1244 const workerInfo = this.getWorkerInfo(workerNodeKey)
1245 workerInfo.ready = false
1246 this.workerNodes[workerNodeKey].closeChannel()
1247 this.emitter?.emit(PoolEvents.error, error)
1248 if (
1249 this.started &&
1250 !this.starting &&
1251 this.opts.restartWorkerOnError === true
1252 ) {
1253 if (workerInfo.dynamic) {
1254 this.createAndSetupDynamicWorkerNode()
1255 } else {
1256 this.createAndSetupWorkerNode()
1257 }
1258 }
1259 if (this.started && this.opts.enableTasksQueue === true) {
1260 this.redistributeQueuedTasks(workerNodeKey)
1261 }
1262 })
1263 worker.on('exit', this.opts.exitHandler ?? EMPTY_FUNCTION)
1264 worker.once('exit', () => {
1265 this.removeWorkerNode(worker)
1266 })
1267
1268 const workerNodeKey = this.addWorkerNode(worker)
1269
1270 this.afterWorkerNodeSetup(workerNodeKey)
1271
1272 return workerNodeKey
1273 }
1274
1275 /**
1276 * Creates a new, completely set up dynamic worker node.
1277 *
1278 * @returns New, completely set up dynamic worker node key.
1279 */
1280 protected createAndSetupDynamicWorkerNode (): number {
1281 const workerNodeKey = this.createAndSetupWorkerNode()
1282 this.registerWorkerMessageListener(workerNodeKey, message => {
1283 const localWorkerNodeKey = this.getWorkerNodeKeyByWorkerId(
1284 message.workerId
1285 )
1286 const workerUsage = this.workerNodes[localWorkerNodeKey].usage
1287 // Kill message received from worker
1288 if (
1289 isKillBehavior(KillBehaviors.HARD, message.kill) ||
1290 (isKillBehavior(KillBehaviors.SOFT, message.kill) &&
1291 ((this.opts.enableTasksQueue === false &&
1292 workerUsage.tasks.executing === 0) ||
1293 (this.opts.enableTasksQueue === true &&
1294 workerUsage.tasks.executing === 0 &&
1295 this.tasksQueueSize(localWorkerNodeKey) === 0)))
1296 ) {
1297 this.destroyWorkerNode(localWorkerNodeKey).catch(error => {
1298 this.emitter?.emit(PoolEvents.error, error)
1299 })
1300 }
1301 })
1302 const workerInfo = this.getWorkerInfo(workerNodeKey)
1303 this.sendToWorker(workerNodeKey, {
1304 checkActive: true
1305 })
1306 if (this.taskFunctions.size > 0) {
1307 for (const [taskFunctionName, taskFunction] of this.taskFunctions) {
1308 this.sendTaskFunctionOperationToWorker(workerNodeKey, {
1309 taskFunctionOperation: 'add',
1310 taskFunctionName,
1311 taskFunction: taskFunction.toString()
1312 }).catch(error => {
1313 this.emitter?.emit(PoolEvents.error, error)
1314 })
1315 }
1316 }
1317 workerInfo.dynamic = true
1318 if (
1319 this.workerChoiceStrategyContext.getStrategyPolicy().dynamicWorkerReady ||
1320 this.workerChoiceStrategyContext.getStrategyPolicy().dynamicWorkerUsage
1321 ) {
1322 workerInfo.ready = true
1323 }
1324 this.checkAndEmitDynamicWorkerCreationEvents()
1325 return workerNodeKey
1326 }
1327
1328 /**
1329 * Registers a listener callback on the worker given its worker node key.
1330 *
1331 * @param workerNodeKey - The worker node key.
1332 * @param listener - The message listener callback.
1333 */
1334 protected abstract registerWorkerMessageListener<
1335 Message extends Data | Response
1336 >(
1337 workerNodeKey: number,
1338 listener: (message: MessageValue<Message>) => void
1339 ): void
1340
1341 /**
1342 * Method hooked up after a worker node has been newly created.
1343 * Can be overridden.
1344 *
1345 * @param workerNodeKey - The newly created worker node key.
1346 */
1347 protected afterWorkerNodeSetup (workerNodeKey: number): void {
1348 // Listen to worker messages.
1349 this.registerWorkerMessageListener(workerNodeKey, this.workerListener())
1350 // Send the startup message to worker.
1351 this.sendStartupMessageToWorker(workerNodeKey)
1352 // Send the statistics message to worker.
1353 this.sendStatisticsMessageToWorker(workerNodeKey)
1354 if (this.opts.enableTasksQueue === true) {
1355 if (this.opts.tasksQueueOptions?.taskStealing === true) {
1356 this.workerNodes[workerNodeKey].onEmptyQueue =
1357 this.taskStealingOnEmptyQueue.bind(this)
1358 }
1359 if (this.opts.tasksQueueOptions?.tasksStealingOnBackPressure === true) {
1360 this.workerNodes[workerNodeKey].onBackPressure =
1361 this.tasksStealingOnBackPressure.bind(this)
1362 }
1363 }
1364 }
1365
1366 /**
1367 * Sends the startup message to worker given its worker node key.
1368 *
1369 * @param workerNodeKey - The worker node key.
1370 */
1371 protected abstract sendStartupMessageToWorker (workerNodeKey: number): void
1372
1373 /**
1374 * Sends the statistics message to worker given its worker node key.
1375 *
1376 * @param workerNodeKey - The worker node key.
1377 */
1378 private sendStatisticsMessageToWorker (workerNodeKey: number): void {
1379 this.sendToWorker(workerNodeKey, {
1380 statistics: {
1381 runTime:
1382 this.workerChoiceStrategyContext.getTaskStatisticsRequirements()
1383 .runTime.aggregate,
1384 elu: this.workerChoiceStrategyContext.getTaskStatisticsRequirements()
1385 .elu.aggregate
1386 }
1387 })
1388 }
1389
1390 private redistributeQueuedTasks (workerNodeKey: number): void {
1391 while (this.tasksQueueSize(workerNodeKey) > 0) {
1392 const destinationWorkerNodeKey = this.workerNodes.reduce(
1393 (minWorkerNodeKey, workerNode, workerNodeKey, workerNodes) => {
1394 return workerNode.info.ready &&
1395 workerNode.usage.tasks.queued <
1396 workerNodes[minWorkerNodeKey].usage.tasks.queued
1397 ? workerNodeKey
1398 : minWorkerNodeKey
1399 },
1400 0
1401 )
1402 const task = this.dequeueTask(workerNodeKey) as Task<Data>
1403 if (this.shallExecuteTask(destinationWorkerNodeKey)) {
1404 this.executeTask(destinationWorkerNodeKey, task)
1405 } else {
1406 this.enqueueTask(destinationWorkerNodeKey, task)
1407 }
1408 }
1409 }
1410
1411 private updateTaskStolenStatisticsWorkerUsage (
1412 workerNodeKey: number,
1413 taskName: string
1414 ): void {
1415 const workerNode = this.workerNodes[workerNodeKey]
1416 if (workerNode?.usage != null) {
1417 ++workerNode.usage.tasks.stolen
1418 }
1419 if (
1420 this.shallUpdateTaskFunctionWorkerUsage(workerNodeKey) &&
1421 workerNode.getTaskFunctionWorkerUsage(taskName) != null
1422 ) {
1423 const taskFunctionWorkerUsage = workerNode.getTaskFunctionWorkerUsage(
1424 taskName
1425 ) as WorkerUsage
1426 ++taskFunctionWorkerUsage.tasks.stolen
1427 }
1428 }
1429
1430 private taskStealingOnEmptyQueue (workerId: number): void {
1431 const destinationWorkerNodeKey = this.getWorkerNodeKeyByWorkerId(workerId)
1432 const workerNodes = this.workerNodes
1433 .slice()
1434 .sort(
1435 (workerNodeA, workerNodeB) =>
1436 workerNodeB.usage.tasks.queued - workerNodeA.usage.tasks.queued
1437 )
1438 const sourceWorkerNode = workerNodes.find(
1439 workerNode =>
1440 workerNode.info.ready &&
1441 workerNode.info.id !== workerId &&
1442 workerNode.usage.tasks.queued > 0
1443 )
1444 if (sourceWorkerNode != null) {
1445 const task = sourceWorkerNode.popTask() as Task<Data>
1446 if (this.shallExecuteTask(destinationWorkerNodeKey)) {
1447 this.executeTask(destinationWorkerNodeKey, task)
1448 } else {
1449 this.enqueueTask(destinationWorkerNodeKey, task)
1450 }
1451 this.updateTaskStolenStatisticsWorkerUsage(
1452 destinationWorkerNodeKey,
1453 task.name as string
1454 )
1455 }
1456 }
1457
1458 private tasksStealingOnBackPressure (workerId: number): void {
1459 const sizeOffset = 1
1460 if ((this.opts.tasksQueueOptions?.size as number) <= sizeOffset) {
1461 return
1462 }
1463 const sourceWorkerNode =
1464 this.workerNodes[this.getWorkerNodeKeyByWorkerId(workerId)]
1465 const workerNodes = this.workerNodes
1466 .slice()
1467 .sort(
1468 (workerNodeA, workerNodeB) =>
1469 workerNodeA.usage.tasks.queued - workerNodeB.usage.tasks.queued
1470 )
1471 for (const [workerNodeKey, workerNode] of workerNodes.entries()) {
1472 if (
1473 sourceWorkerNode.usage.tasks.queued > 0 &&
1474 workerNode.info.ready &&
1475 workerNode.info.id !== workerId &&
1476 workerNode.usage.tasks.queued <
1477 (this.opts.tasksQueueOptions?.size as number) - sizeOffset
1478 ) {
1479 const task = sourceWorkerNode.popTask() as Task<Data>
1480 if (this.shallExecuteTask(workerNodeKey)) {
1481 this.executeTask(workerNodeKey, task)
1482 } else {
1483 this.enqueueTask(workerNodeKey, task)
1484 }
1485 this.updateTaskStolenStatisticsWorkerUsage(
1486 workerNodeKey,
1487 task.name as string
1488 )
1489 }
1490 }
1491 }
1492
1493 /**
1494 * This method is the listener registered for each worker message.
1495 *
1496 * @returns The listener function to execute when a message is received from a worker.
1497 */
1498 protected workerListener (): (message: MessageValue<Response>) => void {
1499 return message => {
1500 this.checkMessageWorkerId(message)
1501 if (message.ready != null && message.taskFunctionNames != null) {
1502 // Worker ready response received from worker
1503 this.handleWorkerReadyResponse(message)
1504 } else if (message.taskId != null) {
1505 // Task execution response received from worker
1506 this.handleTaskExecutionResponse(message)
1507 } else if (message.taskFunctionNames != null) {
1508 // Task function names message received from worker
1509 this.getWorkerInfo(
1510 this.getWorkerNodeKeyByWorkerId(message.workerId)
1511 ).taskFunctionNames = message.taskFunctionNames
1512 }
1513 }
1514 }
1515
1516 private handleWorkerReadyResponse (message: MessageValue<Response>): void {
1517 if (message.ready === false) {
1518 throw new Error(
1519 `Worker ${message.workerId as number} failed to initialize`
1520 )
1521 }
1522 const workerInfo = this.getWorkerInfo(
1523 this.getWorkerNodeKeyByWorkerId(message.workerId)
1524 )
1525 workerInfo.ready = message.ready as boolean
1526 workerInfo.taskFunctionNames = message.taskFunctionNames
1527 if (this.ready) {
1528 this.emitter?.emit(PoolEvents.ready, this.info)
1529 }
1530 }
1531
1532 private handleTaskExecutionResponse (message: MessageValue<Response>): void {
1533 const { taskId, workerError, data } = message
1534 const promiseResponse = this.promiseResponseMap.get(taskId as string)
1535 if (promiseResponse != null) {
1536 if (workerError != null) {
1537 this.emitter?.emit(PoolEvents.taskError, workerError)
1538 promiseResponse.reject(workerError.message)
1539 } else {
1540 promiseResponse.resolve(data as Response)
1541 }
1542 const workerNodeKey = promiseResponse.workerNodeKey
1543 this.afterTaskExecutionHook(workerNodeKey, message)
1544 this.workerChoiceStrategyContext.update(workerNodeKey)
1545 this.promiseResponseMap.delete(taskId as string)
1546 if (
1547 this.opts.enableTasksQueue === true &&
1548 this.tasksQueueSize(workerNodeKey) > 0 &&
1549 this.workerNodes[workerNodeKey].usage.tasks.executing <
1550 (this.opts.tasksQueueOptions?.concurrency as number)
1551 ) {
1552 this.executeTask(
1553 workerNodeKey,
1554 this.dequeueTask(workerNodeKey) as Task<Data>
1555 )
1556 }
1557 }
1558 }
1559
1560 private checkAndEmitTaskExecutionEvents (): void {
1561 if (this.busy) {
1562 this.emitter?.emit(PoolEvents.busy, this.info)
1563 }
1564 }
1565
1566 private checkAndEmitTaskQueuingEvents (): void {
1567 if (this.hasBackPressure()) {
1568 this.emitter?.emit(PoolEvents.backPressure, this.info)
1569 }
1570 }
1571
1572 private checkAndEmitDynamicWorkerCreationEvents (): void {
1573 if (this.type === PoolTypes.dynamic) {
1574 if (this.full) {
1575 this.emitter?.emit(PoolEvents.full, this.info)
1576 }
1577 }
1578 }
1579
1580 /**
1581 * Gets the worker information given its worker node key.
1582 *
1583 * @param workerNodeKey - The worker node key.
1584 * @returns The worker information.
1585 */
1586 protected getWorkerInfo (workerNodeKey: number): WorkerInfo {
1587 return this.workerNodes[workerNodeKey].info
1588 }
1589
1590 /**
1591 * Adds the given worker in the pool worker nodes.
1592 *
1593 * @param worker - The worker.
1594 * @returns The added worker node key.
1595 * @throws {@link https://nodejs.org/api/errors.html#class-error} If the added worker node is not found.
1596 */
1597 private addWorkerNode (worker: Worker): number {
1598 const workerNode = new WorkerNode<Worker, Data>(
1599 worker,
1600 this.opts.tasksQueueOptions?.size ?? Math.pow(this.maxSize, 2)
1601 )
1602 // Flag the worker node as ready at pool startup.
1603 if (this.starting) {
1604 workerNode.info.ready = true
1605 }
1606 this.workerNodes.push(workerNode)
1607 const workerNodeKey = this.getWorkerNodeKeyByWorker(worker)
1608 if (workerNodeKey === -1) {
1609 throw new Error('Worker added not found in worker nodes')
1610 }
1611 return workerNodeKey
1612 }
1613
1614 /**
1615 * Removes the given worker from the pool worker nodes.
1616 *
1617 * @param worker - The worker.
1618 */
1619 private removeWorkerNode (worker: Worker): void {
1620 const workerNodeKey = this.getWorkerNodeKeyByWorker(worker)
1621 if (workerNodeKey !== -1) {
1622 this.workerNodes.splice(workerNodeKey, 1)
1623 this.workerChoiceStrategyContext.remove(workerNodeKey)
1624 }
1625 }
1626
1627 /** @inheritDoc */
1628 public hasWorkerNodeBackPressure (workerNodeKey: number): boolean {
1629 return (
1630 this.opts.enableTasksQueue === true &&
1631 this.workerNodes[workerNodeKey].hasBackPressure()
1632 )
1633 }
1634
1635 private hasBackPressure (): boolean {
1636 return (
1637 this.opts.enableTasksQueue === true &&
1638 this.workerNodes.findIndex(
1639 workerNode => !workerNode.hasBackPressure()
1640 ) === -1
1641 )
1642 }
1643
1644 /**
1645 * Executes the given task on the worker given its worker node key.
1646 *
1647 * @param workerNodeKey - The worker node key.
1648 * @param task - The task to execute.
1649 */
1650 private executeTask (workerNodeKey: number, task: Task<Data>): void {
1651 this.beforeTaskExecutionHook(workerNodeKey, task)
1652 this.sendToWorker(workerNodeKey, task, task.transferList)
1653 this.checkAndEmitTaskExecutionEvents()
1654 }
1655
1656 private enqueueTask (workerNodeKey: number, task: Task<Data>): number {
1657 const tasksQueueSize = this.workerNodes[workerNodeKey].enqueueTask(task)
1658 this.checkAndEmitTaskQueuingEvents()
1659 return tasksQueueSize
1660 }
1661
1662 private dequeueTask (workerNodeKey: number): Task<Data> | undefined {
1663 return this.workerNodes[workerNodeKey].dequeueTask()
1664 }
1665
1666 private tasksQueueSize (workerNodeKey: number): number {
1667 return this.workerNodes[workerNodeKey].tasksQueueSize()
1668 }
1669
1670 protected flushTasksQueue (workerNodeKey: number): void {
1671 while (this.tasksQueueSize(workerNodeKey) > 0) {
1672 this.executeTask(
1673 workerNodeKey,
1674 this.dequeueTask(workerNodeKey) as Task<Data>
1675 )
1676 }
1677 this.workerNodes[workerNodeKey].clearTasksQueue()
1678 }
1679
1680 private flushTasksQueues (): void {
1681 for (const [workerNodeKey] of this.workerNodes.entries()) {
1682 this.flushTasksQueue(workerNodeKey)
1683 }
1684 }
1685 }