3 All notable changes to this project will be documented in this file.
5 The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6 and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
10 ## [2.6.42] - 2023-09-06
14 - Optimize hot code paths implementation: avoid unnecessary branching, add and use optimized helpers (min, max), use reduce() array helper, ...
16 ## [2.6.41] - 2023-09-03
20 - Optimize worker choice strategies implementation.
22 ## [2.6.40] - 2023-09-01
26 - Do not pre-choose in WRR worker choice strategy to avoid bias.
27 - Avoid array out of bound in worker choice strategies after worker node removal.
29 ## [2.6.39] - 2023-08-30
33 - Fix race condition in worker choice strategies at worker node info querying while not yet initialized .
35 ## [2.6.38] - 2023-08-30
39 - Bundle typescript types declaration into one file.
43 - Improve interleaved weighted round robin worker choice strategy implementation.
45 ## [2.6.37] - 2023-08-28
49 - Ensure unused worker usage statistics are deleted at runtime.
53 - Rename worker choice strategy options `choiceRetries` to `retries`.
54 - Avoid unnecessary branching in worker choice strategies.
56 ## [2.6.36] - 2023-08-27
60 - Fix pool `execute()` arguments check.
64 - Make continuous tasks stealing algorithm less aggressive.
65 - Fine tune tasks stealing algorithm under back pressure.
67 ## [2.6.35] - 2023-08-25
71 - Don't account worker usage statistics for tasks that have failed.
72 - Fix pool information runtime and wait time median computation.
76 - Update simple moving average implementation to use a circular buffer.
77 - Update simple moving median implementation to use a circular buffer.
78 - Account for stolen tasks in worker usage statistics and pool information.
82 - Continuous tasks stealing algorithm.
84 ## [2.6.34] - 2023-08-24
88 - Avoid cascading tasks stealing under back pressure.
92 - Add fastpath to queued tasks rescheduling.
94 ## [2.6.33] - 2023-08-24
98 - Fix queued tasks rescheduling.
102 - Rename tasks queue options `queueMaxSize` to `size`.
106 - Task stealing scheduling algorithm if tasks queueing is enabled.
108 ## [2.6.32] - 2023-08-23
112 - Ensure no task can be executed when the pool is destroyed.
116 - Add `queueMaxSize` option to tasks queue options.
117 - Add O(1) deque implementation implemented with doubly linked list and use it for tasks queueing.
118 - Add tasks stealing algorithm when a worker node queue is back pressured if tasks queueing is enabled.
120 ## [2.6.31] - 2023-08-20
124 - Fix worker choice strategy retries mechanism in some edge cases.
128 - Make orthogonal worker choice strategies tasks distribution and created dynamic worker usage.
129 - Remove the experimental status of the `LEAST_ELU` worker choice strategy.
131 ## [2.6.30] - 2023-08-19
135 - Ensure pool event `backPressure` is emitted.
136 - Ensure pool event `full` is emitted only once.
137 - Ensure worker node cannot be instantiated without proper arguments.
139 ## [2.6.29] - 2023-08-18
143 - Fix race condition between ready and task functions worker message handling at startup.
144 - Fix duplicate task function worker usage statistics computation per task function.
145 - Update task function worker usage statistics if and only if there's at least two different task functions.
146 - Fix race condition at task function worker usage executing task computation leading to negative value.
150 - Add back pressure detection on the worker node queue. Event `backPressure` is emitted when all worker node queues are full (worker node queue size >= poolMaxSize^2).
151 - Use back pressure detection in worker choice strategies.
152 - Add worker choice strategies retries mechanism if no worker is eligible.
154 ## [2.6.28] - 2023-08-16
158 - Ensure pool workers are properly initialized.
162 - HTTP server pool examples: express-cluster, express-hybrid.
166 - Remove now useless branching in worker hot code path.
168 ## [2.6.27] - 2023-08-15
172 - Add `KillHandler` type definition to exported types.
176 - Add `destroy` event to pool API.
178 ## [2.6.26] - 2023-08-15
182 - Add kill handler to worker options allowing to execute custom code when worker is killed.
183 - Add `listTaskFunctions()` method to pool API.
184 - SMTP server pool example: nodemailer.
186 ## [2.6.25] - 2023-08-13
190 - HTTP server pool examples: fastify-cluster, fastify-hybrid.
191 - WebSocket server pool examples: ws-cluster, ws-hybrid.
193 ## [2.6.24] - 2023-08-12
197 - Add array of transferable objects to the `execute()` method arguments.
198 - WebSocket server pool examples: ws-worker_threads.
200 ## [2.6.23] - 2023-08-11
204 - Fix pool busyness semantic when tasks queueing is enabled: the pool is busy when the number of executing tasks on each worker has reached the maximum tasks concurrency per worker.
208 - HTTP client pool examples: fetch, node-fetch and axios with multiple task functions.
209 - HTTP server pool examples: express-worker_threads, fastify-worker_threads.
211 ## [2.6.22] - 2023-08-10
215 - Add missing `types` field to package.json `exports`.
219 - Structure markdown documentation (PR #811).
221 ## [2.6.21] - 2023-08-03
225 - Improve code documentation.
226 - Code refactoring and cleanup for better maintainability and readability.
228 ## [2.6.20] - 2023-07-21
232 - Fix queued tasks redistribution on error task execution starvation.
233 - Ensure tasks queueing per worker condition is untangled from the pool busyness semantic.
237 - Drastically reduce lookups by worker in the worker nodes.
239 ## [2.6.19] - 2023-07-20
243 - Dedicated internal communication channel for worker_threads pools.
245 ## [2.6.18] - 2023-07-19
249 - Code refactoring and cleanup for better maintainability and readability. Bundle size is a bit smaller.
251 ## [2.6.17] - 2023-07-16
255 - Add `listTaskFunctions()` method to worker API.
257 ## [2.6.16] - 2023-07-12
261 - Fix pool startup detection.
262 - Fix worker task functions handling.
264 ## [2.6.15] - 2023-07-11
268 - Take into account worker node readiness in worker choice strategies.
270 ## [2.6.14] - 2023-07-10
274 - Fix task function statistics tracking.
276 ## [2.6.13] - 2023-07-10
280 - Add per task function statistics tracking.
281 - Add public methods to manipulate the worker task functions at runtime.
283 ## [2.6.12] - 2023-07-09
287 - Workaround import issue with `node:os` module in node 16.x.x.
289 ## [2.6.11] - 2023-07-09
293 - Fix pool readiness semantic.
295 ## [2.6.10] - 2023-07-08
299 - Ensure workers are not recreated on error at pool startup.
303 - Add `ready` and `strategy` fields to pool information.
304 - Add pool event `ready` to notify when the number of workers created in the pool has reached the maximum size expected and are ready.
305 - Add dynamic pool sizing checks.
307 ## [2.6.9] - 2023-07-07
311 - Recreate the right worker type on uncaught exception.
315 - Add minimum and maximum to internal measurement statistics.
316 - Add `runTime` and `waitTime` to pool information.
317 - Check worker inactive time only on dynamic worker.
319 ## [2.6.8] - 2023-07-03
323 - Brown paper bag release to fix version handling in pool information.
325 ## [2.6.7] - 2023-07-03
329 - Ensure worker queued tasks at error are reassigned to other pool workers.
333 - Add pool `utilization` ratio to pool information.
334 - Add `version` to pool information.
335 - Add worker information to worker nodes.
337 ## [2.6.6] - 2023-07-01
341 - Add safe helper `availableParallelism()` to help sizing the pool.
345 - Ensure message handler is only registered in worker.
347 ## [2.6.5] - 2023-06-27
351 - Cluster pools tasks execution are not working by using ESM files extension: https://github.com/poolifier/poolifier/issues/782
355 - Artificial version bump to 2.6.5 to workaround publication issue.
356 - Ensure cluster pool `destroy()` gracefully shutdowns worker's server.
357 - Ensure pool event is emitted before task error promise rejection.
358 - Fix queued tasks count computation.
362 - Remove unneeded worker_threads worker `MessageChannel` internal usage for IPC.
364 ## [2.6.4] - 2023-06-27
368 - Cluster pools tasks execution are not working by using ESM files extension: https://github.com/poolifier/poolifier/issues/782
372 - Ensure cluster pool `destroy()` gracefully shutdowns worker's server.
373 - Ensure pool event is emitted before task error promise rejection.
374 - Fix queued tasks count computation.
378 - Remove unneeded worker_threads worker `MessageChannel` internal usage for IPC.
380 ## [2.6.3] - 2023-06-19
384 - Ensure no tasks are queued when trying to soft kill a dynamic worker.
385 - Update strategies internals after statistics computation.
389 - Optimize O(1) queue implementation.
391 ## [2.6.2] - 2023-06-12
395 - Fix new worker use after creation in dynamic pool given the current worker choice strategy.
397 ## [2.6.1] - 2023-06-10
401 - Add worker choice strategy documentation: [README.md](./docs/worker-choice-strategies.md).
405 - Fix average statistics computation: ensure failed tasks are not accounted.
407 ## [2.6.0] - 2023-06-09
411 - Add `LEAST_ELU` worker choice strategy (experimental).
412 - Add tasks ELU instead of runtime support to `FAIR_SHARE` worker choice strategy.
416 - Refactor pool worker node usage internals.
417 - Breaking change: refactor worker choice strategy statistics requirements: the syntax of the worker choice strategy options has changed.
418 - Breaking change: pool information `info` property object fields have been renamed.
422 - Fix wait time accounting.
423 - Ensure worker choice strategy `LEAST_BUSY` accounts also tasks wait time.
424 - Ensure worker choice strategy `LEAST_USED` accounts also queued tasks.
426 ## [2.5.4] - 2023-06-07
430 - Add Event Loop Utilization (ELU) statistics to worker tasks usage.
434 - Compute statistics at the worker level only if needed.
435 - Add `worker_threads` options to thread pool options.
439 - Make the `LEAST_BUSY` strategy only relies on task runtime.
441 ## [2.5.3] - 2023-06-04
445 - Refine pool information content.
446 - Limit pool internals public exposure.
448 ## [2.5.2] - 2023-06-02
452 - Add `taskError` pool event for task execution error.
453 - Add pool information `info` property to pool.
454 - Emit pool information on `busy` and `full` pool events.
456 ## [2.5.1] - 2023-06-01
460 - Add pool option `restartWorkerOnError` to restart worker on uncaught error. Default to `true`.
461 - Add `error` pool event for uncaught worker error.
463 ## [2.5.0] - 2023-05-31
467 - Switch pool event emitter to `EventEmitterAsyncResource`.
468 - Add tasks wait time accounting in per worker tasks usage.
469 - Add interleaved weighted round robin `INTERLEAVED_WEIGHTED_ROUND_ROBIN` worker choice strategy (experimental).
473 - Renamed worker choice strategy `LESS_BUSY` to `LEAST_BUSY` and `LESS_USED` to `LEAST_USED`.
475 ## [2.4.14] - 2023-05-09
479 - Ensure no undefined task runtime can land in the tasks history.
480 - Fix median computation implementation once again.
484 - Unit tests for median and queue implementations.
486 ## [2.4.13] - 2023-05-08
490 - Fix worker choice strategy options validation.
491 - Fix fair share worker choice strategy internals update: ensure virtual task end timestamp is computed at task submission.
493 ## [2.4.12] - 2023-05-06
497 - Support multiple task functions per worker.
498 - Add custom worker weights support to worker choice strategies options.
502 - Use O(1) queue implementation for tasks queueing.
506 - Fix median computation implementation.
507 - Fix fair share worker choice strategy internals update.
509 ## [2.4.11] - 2023-04-23
513 - Optimize free worker finding in worker choice strategies.
515 ## [2.4.10] - 2023-04-15
519 - Fix typescript type definition for task function: ensure the input data is optional.
520 - Fix typescript type definition for pool execute(): ensure the input data is optional.
522 ## [2.4.9] - 2023-04-15
526 - Add tasks queue enablement runtime setter to pool.
527 - Add tasks queue options runtime setter to pool.
528 - Add worker choice strategy options runtime setter to pool.
532 - Remove the tasks queuing experimental status.
536 - Fix task function type definition and validation.
537 - Fix worker choice strategy options handling.
539 ## [2.4.8] - 2023-04-12
543 - Fix message between main worker and worker type definition for tasks.
544 - Fix code documentation.
546 ## [2.4.7] - 2023-04-11
550 - Add worker tasks queue options to pool options.
554 - Fix missing documentation.
556 ## [2.4.6] - 2023-04-10
560 - Ensure one task at a time is executed per worker with tasks queueing enabled.
561 - Properly count worker executing tasks with tasks queueing enabled.
563 ## [2.4.5] - 2023-04-09
567 - Use monotonic high resolution timer for worker tasks runtime.
568 - Add worker tasks median runtime to statistics.
569 - Add worker tasks queue (experimental).
571 ## [2.4.4] - 2023-04-07
575 - Add `PoolEvents` enumeration and `PoolEvent` type.
579 - Destroy worker only on alive check.
581 ## [2.4.3] - 2023-04-07
585 - Fix typedoc generation with inheritance.
587 ## [2.4.2] - 2023-04-06
591 - Add `full` event to dynamic pool.
592 - Keep worker choice strategy in memory for conditional reuse.
596 - Fix possible negative worker key at worker removal in worker choice strategies.
598 ## [2.4.1] - 2023-04-05
602 - Optimize worker choice strategy for dynamic pool.
606 - Ensure dynamic pool does not alter worker choice strategy expected behavior.
608 ## [2.4.0] - 2023-04-04
612 - Add `LESS_BUSY` worker choice strategy.
616 - Optimize worker storage in pool.
617 - Optimize worker alive status check.
618 - BREAKING CHANGE: Rename worker choice strategy `LESS_RECENTLY_USED` to `LESS_USED`.
619 - Optimize `LESS_USED` worker choice strategy.
620 - Update benchmarks versus external threads pools.
621 - Optimize tasks usage statistics requirements for worker choice strategy.
625 - Ensure trimmable characters are checked at pool initialization.
626 - Fix message id integer overflow.
627 - Fix pool worker removal in worker choice strategy internals.
628 - Fix package publication with pnpm.
630 ## [2.4.0-3] - 2023-04-04
634 - Add `LESS_BUSY` worker choice strategy.
638 - Optimize worker storage in pool.
639 - Optimize worker alive status check.
640 - BREAKING CHANGE: Rename worker choice strategy `LESS_RECENTLY_USED` to `LESS_USED`.
641 - Optimize `LESS_USED` worker choice strategy.
642 - Update benchmarks versus external threads pools.
646 - Ensure trimmable characters are checked at pool initialization.
647 - Fix message id integer overflow.
648 - Fix pool worker removal in worker choice strategy internals.
649 - Fix package publication with pnpm.
651 ## [2.4.0-2] - 2023-04-03
655 - Add `LESS_BUSY` worker choice strategy.
659 - Optimize worker storage in pool.
660 - Optimize worker alive status check.
661 - BREAKING CHANGE: Rename worker choice strategy `LESS_RECENTLY_USED` to `LESS_USED`.
662 - Optimize `LESS_USED` worker choice strategy.
666 - Ensure trimmable characters are checked at pool initialization.
667 - Fix message id integer overflow.
668 - Fix pool worker removal in worker choice strategy internals.
669 - Fix package publication with pnpm.
671 ## [2.4.0-1] - 2023-04-03
675 - Add `LESS_BUSY` worker choice strategy.
679 - Optimize worker storage in pool.
680 - Optimize worker alive status check.
681 - BREAKING CHANGE: Rename worker choice strategy `LESS_RECENTLY_USED` to `LESS_USED`.
682 - Optimize `LESS_USED` worker choice strategy.
686 - Ensure trimmable characters are checked at pool initialization.
687 - Fix message id integer overflow.
688 - Fix pool worker removal in worker choice strategy internals.
690 ## [2.4.0-0] - 2023-04-03
694 - Add `LESS_BUSY` worker choice strategy.
698 - Optimize worker storage in pool.
699 - Optimize worker alive status check.
700 - BREAKING CHANGE: Rename worker choice strategy `LESS_RECENTLY_USED` to `LESS_USED`.
701 - Optimize `LESS_USED` worker choice strategy.
705 - Ensure trimmable characters are checked at pool initialization.
706 - Fix message id integer overflow.
707 - Fix pool worker removal in worker choice strategy internals.
709 ## [2.3.10] - 2023-03-18
713 - Fix package.json `exports` syntax for ESM and CommonJS.
717 - Permit SemVer pre-release publication.
719 ## [2.3.10-2] - 2023-03-18
723 - Fix package.json `exports` syntax for ESM and CommonJS.
725 ## [2.3.10-1] - 2023-03-18
729 - Permit SemVer pre-release publication.
731 ## [2.3.10-0] - 2023-03-18
735 - Fix package.json `exports` syntax for ESM and CommonJS.
737 ## [2.3.9] - 2023-03-18
741 - Introduce ESM module support along with CommonJS one.
745 - Fix brown paper bag bug referencing the same object literal.
747 ## [2.3.8] - 2023-03-18
751 - Switch internal benchmarking code to benny.
752 - Switch to TypeScript 5.x.x.
753 - Switch rollup bundler plugins to core ones.
754 - Switch to TSDoc syntax.
755 - Enforce conventional commits.
759 - Fix random integer generator.
760 - Fix worker choice strategy pool type identification at initialization.
762 ## [2.3.7] - 2022-10-23
766 - Switch to open collective FOSS project funding platform.
767 - Switch to ts-standard linter configuration on TypeScript code.
771 - Fixed missing async on pool execute method.
772 - Fixed typing in TypeScript example.
773 - Fixed types in unit tests.
775 ## [2.3.6] - 2022-10-22
779 - Cleanup pool attributes and methods.
780 - Refine error types thrown.
784 - Fix continuous integration build on windows.
785 - Fix code coverage reporting by using c8 instead of nyc.
787 ## [2.3.5] - 2022-10-21
791 - Improve benchmarks: add IO intensive task workload, add task size option, integrate code into linter.
792 - Optimize tasks usage lookup implementation.
796 - Fix missed pool event emitter type export.
797 - Fix typedoc documentation generation.
799 ## [2.3.4] - 2022-10-17
803 - Fully automate release process with release-it.
807 - Optimize fair share task scheduling algorithm implementation.
808 - Update benchmarks versus external pools results with latest version.
810 ## [2.3.3] - 2022-10-15
814 - Add support for [cluster settings](https://nodejs.org/api/cluster.html#cluster_cluster_settings) in cluster pool options.
816 ## [2.3.2] - 2022-10-14
820 - Optimize fair share worker selection strategy implementation.
824 - Fix WRR worker selection strategy: ensure the condition triggering the round robin can be fulfilled.
826 ## [2.3.1] - 2022-10-13
830 - Pool worker choice strategies:
831 - `WorkerChoiceStrategies.WEIGHTED_ROUND_ROBIN` strategy based on weighted round robin scheduling algorithm using tasks execution time for now.
832 - `WorkerChoiceStrategies.FAIR_SHARE` strategy based on fair share scheduling algorithm using tasks execution time for now.
834 ## [2.2.2] - 2022-10-09
838 - Fixed `README.md` file.
840 ## [2.2.1] - 2022-10-08
844 - Dynamic worker choice strategy change at runtime.
846 ## [2.2.0] - 2022-01-05
850 - Support only Node.js version 16.x.x for cluster pool: upstream cluster API have changed on that version.
852 ## [2.1.0] - 2021-08-29
856 - Add an optional pool option `messageHandler` to `PoolOptions<Worker>` for registering a message handler callback on each worker.
860 - `AbstractWorker` class `maxInactiveTime`, `killBehavior` and `async` attributes have been removed in favour of the same ones in the worker options `opts` public attribute.
861 - `AbstractWorker` class `lastTask` attribute have been renamed to `lastTaskTimestamp`.
862 - `AbstractWorker` class `interval` attribute have been renamed to `aliveInterval`.
863 - `AbstractWorker` class cannot be instantiated without specifying the `mainWorker` argument referencing the main worker.
865 ## [2.0.2] - 2021-05-12
869 - Fix `busy` event emission on fixed pool type
871 ## [2.0.1] - 2021-03-16
875 - Check if pool options are properly set.
876 - `busy` event is emitted on all pool types.
878 ## [2.0.0] - 2021-03-01
882 - Now a thread/process by default is not deleted when the task submitted take more time than maxInactiveTime configured (issue #70).
886 - `FullPool` event is now renamed to `busy`.
887 - `maxInactiveTime` on `ThreadWorker` default behavior is now changed, if you want to keep the old behavior set `killBehavior` to `KillBehaviors.HARD`.
888 _Find more details on our JSDoc._
890 - `maxTasks` option on `FixedThreadPool` and `DynamicThreadPool` is now removed since is no more needed.
892 - We changed some internal structures, but you shouldn't be too affected by them as these are internal changes.
894 ### Pool options types declaration merge
896 `FixedThreadPoolOptions` and `DynamicThreadPoolOptions` type declarations have been merged to `PoolOptions<Worker>`.
898 #### New `export` strategy
902 const DynamicThreadPool = require('poolifier/lib/dynamic')
904 const { DynamicThreadPool } = require('poolifier/lib/dynamic')
907 But you should always prefer just using
910 const { DynamicThreadPool } = require('poolifier')
913 #### New type definitions for input data and response
915 For cluster worker and worker-thread pools, you can now only send and receive structured-cloneable data.
916 _This is not a limitation by poolifier but Node.js._
918 #### Public property replacements
920 `numWorkers` property is now `numberOfWorkers`
922 #### Internal (protected) properties and methods renaming
924 These properties are not intended for end users
926 - `id` => `nextMessageId`
928 These methods are not intended for end users
930 - `_chooseWorker` => `chooseWorker`
931 - `_newWorker` => `createWorker`
932 - `_execute` => `internalExecute`
933 - `_chooseWorker` => `chooseWorker`
934 - `_checkAlive` => `checkAlive`
936 - `_runAsync` => `runAsync`
938 ## [1.1.0] - 2020-05-21
942 - ThreadWorker support async functions as option
943 - Various external library patches
945 ## [1.0.0] - 2020-01-24
949 - FixedThreadPool implementation
950 - DynamicThreadPool implementation
951 - WorkerThread implementation to improve developer experience