docs: add changelog entry
[poolifier.git] / CHANGELOG.md
1 # Changelog
2
3 All notable changes to this project will be documented in this file.
4
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).
7
8 ## [Unreleased]
9
10 ### Fixed
11
12 - Fix CommonJS support with TypeScript.
13
14 ## [3.1.14] - 2024-01-01
15
16 ### Fixed
17
18 - Properly handle dynamic pool with zero minimum size.
19
20 ## [3.1.13] - 2023-12-30
21
22 ### Changed
23
24 - Reduce branching in several hot code paths.
25 - Use faster object cloning implementation.
26
27 ## [3.1.12] - 2023-12-27
28
29 ### Fixed
30
31 - Fix tasks redistribution triggers at pool destroying.
32
33 ### Changed
34
35 - Switch TypeScript module resolution to Node16.
36
37 ## [3.1.12-0] - 2023-12-27
38
39 ### Fixed
40
41 - Fix tasks redistribution triggers at pool destroying.
42
43 ## [3.1.11] - 2023-12-24
44
45 ### Fixed
46
47 - Avoid worker node cross tasks stealing.
48 - Ensure only half the pool worker nodes can steal tasks.
49
50 ## [3.1.10] - 2023-12-23
51
52 ### Changed
53
54 - Avoid useless branching on pool type.
55
56 ## [3.1.9] - 2023-12-22
57
58 ### Changed
59
60 - Readd ThreadPoolOptions and ClusterPoolOptions TS type aliases to PoolOptions.
61
62 ## [3.1.8] - 2023-12-21
63
64 ### Fixed
65
66 - Fix default worker weight computation.
67 - Fix possible null exception at pool destroying.
68
69 ## [3.1.7] - 2023-12-20
70
71 ### Fixed
72
73 - Ensure worker choice strategies implementation wait for worker node readiness: [#1748](https://github.com/poolifier/poolifier/issues/1748).
74
75 ## [3.1.6] - 2023-12-18
76
77 ### Fixed
78
79 - Fix pool destroying with tasks queuing enabled.
80
81 ## [3.1.5] - 2023-12-18
82
83 ### Added
84
85 - Add queued tasks end timeout support to worker node termination.
86
87 ## [3.1.4] - 2023-12-18
88
89 ### Fixed
90
91 - Make more robust the fix for possible null exception at handling task execution response.
92
93 ## [3.1.3] - 2023-12-17
94
95 ### Fixed
96
97 - Fix possible null exception at handling task execution response.
98
99 ## [3.1.2] - 2023-12-17
100
101 ### Fixed
102
103 - Wait for queued tasks to end at worker node termination.
104
105 ## [3.1.1] - 2023-12-16
106
107 ### Fixed
108
109 - Fix pool options TS type definition.
110
111 ## [3.1.0] - 2023-12-16
112
113 ### Changed
114
115 - TypeScript breaking change: merge ThreadPoolOptions and ClusterPoolOptions types into PoolOptions type.
116
117 ## [3.0.14] - 2023-12-13
118
119 ### Fixed
120
121 - Fix possible null exception with worker_threads pools.
122
123 ## [3.0.13] - 2023-12-12
124
125 ### Fixed
126
127 - Ensure worker choice strategy wait for worker nodes readiness.
128
129 ### Changed
130
131 - Remove infinite retries support in worker choice strategy to avoid configuration leading to possible infinite recursion or loop.
132
133 ## [3.0.12] - 2023-12-12
134
135 ### Changed
136
137 - Add infinite retries support in worker choice strategy.
138
139 ## [3.0.11] - 2023-12-11
140
141 ### Fixed
142
143 - Ensure pool asynchronous resource properly track tasks execution.
144
145 ## [3.0.10] - 2023-12-08
146
147 ### Changed
148
149 - Add a fastpath when tasks stealing or redistribution is impossible.
150
151 ## [3.0.9] - 2023-11-26
152
153 ### Fixed
154
155 - Remove all pool events listener at pool destroying.
156 - Remove all worker node events listener at worker node destroying.
157 - Fix worker node event emitter listeners handling memory leak at pool options runtime change.
158
159 ## [3.0.8] - 2023-11-25
160
161 ### Fixed
162
163 - Ensure continuous tasks stealing on idle start at worker node idling.
164
165 ## [3.0.7] - 2023-11-24
166
167 ### Changed
168
169 - Make continuous tasks stealing start at worker node idling.
170
171 ## [3.0.6] - 2023-11-24
172
173 ### Fixed
174
175 - Ensure pool statuses are checked at initialization, `start()` or `destroy()`.
176 - Ensure pool `ready` event can be emitted after several `start()/destroy()` cycles.
177
178 ## [3.0.5] - 2023-10-27
179
180 ### Fixed
181
182 - Ensure pool `ready` event can be emitted only once.
183
184 ## [3.0.4] - 2023-10-20
185
186 ### Changed
187
188 - Switch to Bencher for benchmarking: [https://bencher.dev/perf/poolifier](https://bencher.dev/perf/poolifier).
189 - Use builtin retry mechanism in worker choice strategies instead of custom one.
190
191 ## [3.0.3] - 2023-10-19
192
193 ### Fixed
194
195 - Avoid null exception at sending message to worker.
196 - Avoid null exception at checking worker node readiness.
197
198 ## [3.0.2] - 2023-10-17
199
200 ### Fixed
201
202 - Fix race condition at dynamic worker node task assignment and scheduled removal. See issue [#1468](https://github.com/poolifier/poolifier/issues/1468) and [#1496](https://github.com/poolifier/poolifier/issues/1496).
203
204 ## [3.0.1] - 2023-10-16
205
206 ### Fixed
207
208 - Workaround possible race condition at work nodes array element removal and querying. See issue [#1468](https://github.com/poolifier/poolifier/issues/1468).
209
210 ### Changed
211
212 - Switch the worker node eventing code to `EventTarget` API.
213
214 ## [3.0.0] - 2023-10-08
215
216 ### Changed
217
218 - Remove Node.js 16.x.x (EOL) support.
219
220 ## [2.7.5] - 2023-10-03
221
222 ### Changed
223
224 - Use `EventEmitterAsyncResource` type from `@types/node` for pool event emitter. TypeScript users will need to update to latest `@types/node` version.
225
226 ## [2.7.4] - 2023-09-25
227
228 ### Fixed
229
230 - Fix source maps (bundler issue).
231
232 ## [2.7.3] - 2023-09-24
233
234 ### Changed
235
236 - Convert pool event emitter to event emitter async resource.
237
238 ## [2.7.2] - 2023-09-23
239
240 ### Changed
241
242 - Add source maps to npm package to ease debugging.
243
244 ### Added
245
246 - Continuous benchmarking versus other worker pools: [https://poolifier.github.io/benchmark](https://poolifier.github.io/benchmark).
247
248 ## [2.7.1] - 2023-09-20
249
250 ### Fixed
251
252 - Ensure worker message listener used one time are removed after usage.
253
254 ## [2.7.0] - 2023-09-19
255
256 ### Fixed
257
258 - Fix task stealing related tasks queue options handling at runtime.
259
260 ### Changed
261
262 - Rename `listTaskFunctions()` to `listTaskFunctionNames()` in pool and worker API.
263
264 ### Added
265
266 - Add `hasTaskFunction()`, `addTaskFunction()`, `removeTaskFunction()`, `setDefaultTaskFunction()` methods to pool API: [PR #1148](https://github.com/poolifier/poolifier/pull/1148).
267 - Stricter worker constructor arguments validation.
268
269 ## [2.6.45] - 2023-09-17
270
271 ### Changed
272
273 - Disable publication on GitHub packages registry on release until authentication issue is fixed.
274
275 ### Added
276
277 - Add `startWorkers` to pool options to whether start the minimum number of workers at pool initialization or not.
278 - Add `start()` method to pool API to start the minimum number of workers.
279 - Add `taskStealing` and `tasksStealingOnPressure` to tasks queue options to whether enable task stealing or not and whether enable tasks stealing under back pressure or not.
280 - Continuous internal benchmarking: [https://poolifier.github.io/benchmark-results/dev/bench](https://poolifier.github.io/benchmark-results/dev/bench).
281
282 ## [2.6.44] - 2023-09-08
283
284 ### Fixed
285
286 - Use a dedicated PAT to publish on GitHub packages registry.
287
288 ### Added
289
290 - Publish on GitHub packages registry on release.
291
292 ### Changed
293
294 - Switch from rome to biome: [PR #1128](https://github.com/poolifier/poolifier/pull/1128).
295
296 ## [2.6.43] - 2023-09-08
297
298 ### Added
299
300 - Publish on GitHub packages registry on release.
301
302 ### Changed
303
304 - Switch from rome to biome: [PR #1128](https://github.com/poolifier/poolifier/pull/1128).
305
306 ## [2.6.42] - 2023-09-06
307
308 ### Changed
309
310 - Optimize hot code paths implementation: avoid unnecessary branching, add and use optimized helpers (min, max), use reduce() array helper, ...
311
312 ## [2.6.41] - 2023-09-03
313
314 ### Changed
315
316 - Optimize worker choice strategies implementation.
317
318 ## [2.6.40] - 2023-09-01
319
320 ### Fixed
321
322 - Do not pre-choose in WRR worker choice strategy to avoid bias.
323 - Avoid array out of bound in worker choice strategies after worker node removal.
324
325 ## [2.6.39] - 2023-08-30
326
327 ### Fixed
328
329 - Fix race condition in worker choice strategies at worker node info querying while not yet initialized.
330
331 ## [2.6.38] - 2023-08-30
332
333 ### Added
334
335 - Bundle typescript types declaration into one file.
336
337 ### Changed
338
339 - Improve interleaved weighted round robin worker choice strategy implementation.
340
341 ## [2.6.37] - 2023-08-28
342
343 ### Fixed
344
345 - Ensure unused worker usage statistics are deleted at runtime.
346
347 ### Changed
348
349 - Rename worker choice strategy options `choiceRetries` to `retries`.
350 - Avoid unnecessary branching in worker choice strategies.
351
352 ## [2.6.36] - 2023-08-27
353
354 ### Fixed
355
356 - Fix pool `execute()` arguments check.
357
358 ### Changed
359
360 - Make continuous tasks stealing algorithm less aggressive.
361 - Fine tune tasks stealing algorithm under back pressure.
362
363 ## [2.6.35] - 2023-08-25
364
365 ### Fixed
366
367 - Don't account worker usage statistics for tasks that have failed.
368 - Fix pool information runtime and wait time median computation.
369
370 ### Changed
371
372 - Update simple moving average implementation to use a circular buffer.
373 - Update simple moving median implementation to use a circular buffer.
374 - Account for stolen tasks in worker usage statistics and pool information.
375
376 ### Added
377
378 - Continuous tasks stealing algorithm.
379
380 ## [2.6.34] - 2023-08-24
381
382 ### Fixes
383
384 - Avoid cascading tasks stealing under back pressure.
385
386 ### Changed
387
388 - Add fastpath to queued tasks rescheduling.
389
390 ## [2.6.33] - 2023-08-24
391
392 ### Fixed
393
394 - Fix queued tasks rescheduling.
395
396 ### Changed
397
398 - Rename tasks queue options `queueMaxSize` to `size`.
399
400 ### Added
401
402 - Task stealing scheduling algorithm if tasks queueing is enabled.
403
404 ## [2.6.32] - 2023-08-23
405
406 ### Fixed
407
408 - Ensure no task can be executed when the pool is destroyed.
409
410 ### Added
411
412 - Add `queueMaxSize` option to tasks queue options.
413 - Add O(1) deque implementation implemented with doubly linked list and use it for tasks queueing.
414 - Add tasks stealing algorithm when a worker node queue is back pressured if tasks queueing is enabled.
415
416 ## [2.6.31] - 2023-08-20
417
418 ### Fixed
419
420 - Fix worker choice strategy retries mechanism in some edge cases.
421
422 ### Changed
423
424 - Make orthogonal worker choice strategies tasks distribution and created dynamic worker usage.
425 - Remove the experimental status of the `LEAST_ELU` worker choice strategy.
426
427 ## [2.6.30] - 2023-08-19
428
429 ### Fixed
430
431 - Ensure pool event `backPressure` is emitted.
432 - Ensure pool event `full` is emitted only once.
433 - Ensure worker node cannot be instantiated without proper arguments.
434
435 ## [2.6.29] - 2023-08-18
436
437 ### Fixed
438
439 - Fix race condition between readiness and task functions worker message handling at startup.
440 - Fix duplicate task function worker usage statistics computation per task function.
441 - Update task function worker usage statistics if and only if there's at least two different task functions.
442 - Fix race condition at task function worker usage executing task computation leading to negative value.
443
444 ### Added
445
446 - 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).
447 - Use back pressure detection in worker choice strategies.
448 - Add worker choice strategies retries mechanism if no worker is eligible.
449
450 ## [2.6.28] - 2023-08-16
451
452 ### Fixed
453
454 - Ensure pool workers are properly initialized.
455
456 ### Added
457
458 - HTTP server pool examples: express-cluster, express-hybrid.
459
460 ### Changed
461
462 - Remove now useless branching in worker hot code path.
463
464 ## [2.6.27] - 2023-08-15
465
466 ### Fixed
467
468 - Add `KillHandler` type definition to exported types.
469
470 ### Added
471
472 - Add `destroy` event to pool API.
473
474 ## [2.6.26] - 2023-08-15
475
476 ### Added
477
478 - Add kill handler to worker options allowing to execute custom code when worker is killed.
479 - Add `listTaskFunctions()` method to pool API.
480 - SMTP client pool example: nodemailer.
481
482 ## [2.6.25] - 2023-08-13
483
484 ### Added
485
486 - HTTP server pool examples: fastify-cluster, fastify-hybrid.
487 - WebSocket server pool examples: ws-cluster, ws-hybrid.
488
489 ## [2.6.24] - 2023-08-12
490
491 ### Added
492
493 - Add array of transferable objects to the `execute()` method arguments.
494 - WebSocket server pool examples: ws-worker_threads.
495
496 ## [2.6.23] - 2023-08-11
497
498 ### Fixed
499
500 - 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.
501
502 ### Added
503
504 - HTTP client pool examples: fetch, node-fetch and axios with multiple task functions.
505 - HTTP server pool examples: express-worker_threads, fastify-worker_threads.
506
507 ## [2.6.22] - 2023-08-10
508
509 ### Fixed
510
511 - Add missing `types` field to package.json `exports`.
512
513 ### Changed
514
515 - Structure markdown documentation (PR #811).
516
517 ## [2.6.21] - 2023-08-03
518
519 ### Changed
520
521 - Improve code documentation.
522 - Code refactoring and cleanup for better maintainability and readability.
523
524 ## [2.6.20] - 2023-07-21
525
526 ### Fixed
527
528 - Fix queued tasks redistribution on error task execution starvation.
529 - Ensure tasks queueing per worker condition is untangled from the pool busyness semantic.
530
531 ### Changed
532
533 - Drastically reduce lookups by worker in the worker nodes.
534
535 ## [2.6.19] - 2023-07-20
536
537 ### Added
538
539 - Dedicated internal communication channel for worker_threads pools.
540
541 ## [2.6.18] - 2023-07-19
542
543 ### Changed
544
545 - Code refactoring and cleanup for better maintainability and readability. Bundle size is a bit smaller.
546
547 ## [2.6.17] - 2023-07-16
548
549 ### Added
550
551 - Add `listTaskFunctions()` method to worker API.
552
553 ## [2.6.16] - 2023-07-12
554
555 ### Fixed
556
557 - Fix pool startup detection.
558 - Fix worker task functions handling.
559
560 ## [2.6.15] - 2023-07-11
561
562 ### Added
563
564 - Take into account worker node readiness in worker choice strategies.
565
566 ## [2.6.14] - 2023-07-10
567
568 ### Fixed
569
570 - Fix task function statistics tracking.
571
572 ## [2.6.13] - 2023-07-10
573
574 ### Added
575
576 - Add per task function statistics tracking.
577 - Add public methods to manipulate the worker task functions at runtime.
578
579 ## [2.6.12] - 2023-07-09
580
581 ### Fixed
582
583 - Workaround import issue with `node:os` module in node 16.x.x.
584
585 ## [2.6.11] - 2023-07-09
586
587 ### Fixed
588
589 - Fix pool readiness semantic.
590
591 ## [2.6.10] - 2023-07-08
592
593 ### Fixed
594
595 - Ensure workers are not recreated on error at pool startup.
596
597 ### Added
598
599 - Add `ready` and `strategy` fields to pool information.
600 - Add pool event `ready` to notify when the number of workers created in the pool has reached the maximum size expected and are ready.
601 - Add dynamic pool sizing checks.
602
603 ## [2.6.9] - 2023-07-07
604
605 ### Fixed
606
607 - Recreate the right worker type on uncaught exception.
608
609 ### Added
610
611 - Add minimum and maximum to internal measurement statistics.
612 - Add `runTime` and `waitTime` to pool information.
613 - Check worker inactive time only on dynamic worker.
614
615 ## [2.6.8] - 2023-07-03
616
617 ### Fixed
618
619 - Brown paper bag release to fix version handling in pool information.
620
621 ## [2.6.7] - 2023-07-03
622
623 ### Fixed
624
625 - Ensure worker queued tasks at error are reassigned to other pool workers.
626
627 ### Added
628
629 - Add pool `utilization` ratio to pool information.
630 - Add `version` to pool information.
631 - Add worker information to worker nodes.
632
633 ## [2.6.6] - 2023-07-01
634
635 ### Added
636
637 - Add safe helper `availableParallelism()` to help sizing the pool.
638
639 ### Fixed
640
641 - Ensure message handler is only registered in worker.
642
643 ## [2.6.5] - 2023-06-27
644
645 ### Known issues
646
647 - Cluster pools tasks execution are not working by using ESM files extension: https://github.com/poolifier/poolifier/issues/782
648
649 ### Fixed
650
651 - Artificial version bump to 2.6.5 to workaround publication issue.
652 - Ensure cluster pool `destroy()` gracefully shutdowns worker's server.
653 - Ensure pool event is emitted before task error promise rejection.
654 - Fix queued tasks count computation.
655
656 ### Removed
657
658 - Remove unneeded worker_threads worker `MessageChannel` internal usage for IPC.
659
660 ## [2.6.4] - 2023-06-27
661
662 ### Known issues
663
664 - Cluster pools tasks execution are not working by using ESM files extension: https://github.com/poolifier/poolifier/issues/782
665
666 ### Fixed
667
668 - Ensure cluster pool `destroy()` gracefully shutdowns worker's server.
669 - Ensure pool event is emitted before task error promise rejection.
670 - Fix queued tasks count computation.
671
672 ### Removed
673
674 - Remove unneeded worker_threads worker `MessageChannel` internal usage for IPC.
675
676 ## [2.6.3] - 2023-06-19
677
678 ### Fixed
679
680 - Ensure no tasks are queued when trying to soft kill a dynamic worker.
681 - Update strategies internals after statistics computation.
682
683 ### Changed
684
685 - Optimize O(1) queue implementation.
686
687 ## [2.6.2] - 2023-06-12
688
689 ### Fixed
690
691 - Fix new worker use after creation in dynamic pool given the current worker choice strategy.
692
693 ## [2.6.1] - 2023-06-10
694
695 ### Added
696
697 - Add worker choice strategy documentation: [README.md](./docs/worker-choice-strategies.md).
698
699 ### Fixed
700
701 - Fix average statistics computation: ensure failed tasks are not accounted.
702
703 ## [2.6.0] - 2023-06-09
704
705 ### Added
706
707 - Add `LEAST_ELU` worker choice strategy (experimental).
708 - Add tasks ELU instead of runtime support to `FAIR_SHARE` worker choice strategy.
709
710 ### Changed
711
712 - Refactor pool worker node usage internals.
713 - Breaking change: refactor worker choice strategy statistics requirements: the syntax of the worker choice strategy options has changed.
714 - Breaking change: pool information `info` property object fields have been renamed.
715
716 ### Fixed
717
718 - Fix wait time accounting.
719 - Ensure worker choice strategy `LEAST_BUSY` accounts also tasks wait time.
720 - Ensure worker choice strategy `LEAST_USED` accounts also queued tasks.
721
722 ## [2.5.4] - 2023-06-07
723
724 ### Added
725
726 - Add Event Loop Utilization (ELU) statistics to worker tasks usage.
727
728 ### Changed
729
730 - Compute statistics at the worker level only if needed.
731 - Add `worker_threads` options to thread pool options.
732
733 ### Fixed
734
735 - Make the `LEAST_BUSY` strategy only relies on task runtime.
736
737 ## [2.5.3] - 2023-06-04
738
739 ### Changed
740
741 - Refine pool information content.
742 - Limit pool internals public exposure.
743
744 ## [2.5.2] - 2023-06-02
745
746 ### Added
747
748 - Add `taskError` pool event for task execution error.
749 - Add pool information `info` property to pool.
750 - Emit pool information on `busy` and `full` pool events.
751
752 ## [2.5.1] - 2023-06-01
753
754 ### Added
755
756 - Add pool option `restartWorkerOnError` to restart worker on uncaught error. Default to `true`.
757 - Add `error` pool event for uncaught worker error.
758
759 ## [2.5.0] - 2023-05-31
760
761 ### Added
762
763 - Switch pool event emitter to `EventEmitterAsyncResource`.
764 - Add tasks wait time accounting in per worker tasks usage.
765 - Add interleaved weighted round robin `INTERLEAVED_WEIGHTED_ROUND_ROBIN` worker choice strategy (experimental).
766
767 ### Changed
768
769 - Renamed worker choice strategy `LESS_BUSY` to `LEAST_BUSY` and `LESS_USED` to `LEAST_USED`.
770
771 ## [2.4.14] - 2023-05-09
772
773 ### Fixed
774
775 - Ensure no undefined task runtime can land in the tasks history.
776 - Fix median computation implementation once again.
777
778 ### Added
779
780 - Unit tests for median and queue implementations.
781
782 ## [2.4.13] - 2023-05-08
783
784 ### Fixed
785
786 - Fix worker choice strategy options validation.
787 - Fix fair share worker choice strategy internals update: ensure virtual task end timestamp is computed at task submission.
788
789 ## [2.4.12] - 2023-05-06
790
791 ### Added
792
793 - Support multiple task functions per worker.
794 - Add custom worker weights support to worker choice strategies options.
795
796 ### Changed
797
798 - Use O(1) queue implementation for tasks queueing.
799
800 ### Fixed
801
802 - Fix median computation implementation.
803 - Fix fair share worker choice strategy internals update.
804
805 ## [2.4.11] - 2023-04-23
806
807 ### Changed
808
809 - Optimize free worker finding in worker choice strategies.
810
811 ## [2.4.10] - 2023-04-15
812
813 ### Fixed
814
815 - Fix typescript type definition for task function: ensure the input data is optional.
816 - Fix typescript type definition for pool execute(): ensure the input data is optional.
817
818 ## [2.4.9] - 2023-04-15
819
820 ### Added
821
822 - Add tasks queue enablement runtime setter to pool.
823 - Add tasks queue options runtime setter to pool.
824 - Add worker choice strategy options runtime setter to pool.
825
826 ### Changed
827
828 - Remove the tasks queuing experimental status.
829
830 ### Fixed
831
832 - Fix task function type definition and validation.
833 - Fix worker choice strategy options handling.
834
835 ## [2.4.8] - 2023-04-12
836
837 ### Fixed
838
839 - Fix message between main worker and worker type definition for tasks.
840 - Fix code documentation.
841
842 ## [2.4.7] - 2023-04-11
843
844 ### Added
845
846 - Add worker tasks queue options to pool options.
847
848 ### Fixed
849
850 - Fix missing documentation.
851
852 ## [2.4.6] - 2023-04-10
853
854 ### Fixed
855
856 - Ensure one task at a time is executed per worker with tasks queueing enabled.
857 - Properly count worker executing tasks with tasks queueing enabled.
858
859 ## [2.4.5] - 2023-04-09
860
861 ### Added
862
863 - Use monotonic high resolution timer for worker tasks runtime.
864 - Add worker tasks median runtime to statistics.
865 - Add worker tasks queue (experimental).
866
867 ## [2.4.4] - 2023-04-07
868
869 ### Added
870
871 - Add `PoolEvents` enumeration and `PoolEvent` type.
872
873 ### Fixed
874
875 - Destroy worker only on alive check.
876
877 ## [2.4.3] - 2023-04-07
878
879 ### Fixed
880
881 - Fix typedoc generation with inheritance.
882
883 ## [2.4.2] - 2023-04-06
884
885 ### Added
886
887 - Add `full` event to dynamic pool.
888 - Keep worker choice strategy in memory for conditional reuse.
889
890 ### Fixed
891
892 - Fix possible negative worker key at worker removal in worker choice strategies.
893
894 ## [2.4.1] - 2023-04-05
895
896 ### Changed
897
898 - Optimize worker choice strategy for dynamic pool.
899
900 ### Fixed
901
902 - Ensure dynamic pool does not alter worker choice strategy expected behavior.
903
904 ## [2.4.0] - 2023-04-04
905
906 ### Added
907
908 - Add `LESS_BUSY` worker choice strategy.
909
910 ### Changed
911
912 - Optimize worker storage in pool.
913 - Optimize worker alive status check.
914 - BREAKING CHANGE: Rename worker choice strategy `LESS_RECENTLY_USED` to `LESS_USED`.
915 - Optimize `LESS_USED` worker choice strategy.
916 - Update benchmark versus external threads pools.
917 - Optimize tasks usage statistics requirements for worker choice strategy.
918
919 ### Fixed
920
921 - Ensure trimmable characters are checked at pool initialization.
922 - Fix message id integer overflow.
923 - Fix pool worker removal in worker choice strategy internals.
924 - Fix package publication with pnpm.
925
926 ## [2.4.0-3] - 2023-04-04
927
928 ### Added
929
930 - Add `LESS_BUSY` worker choice strategy.
931
932 ### Changed
933
934 - Optimize worker storage in pool.
935 - Optimize worker alive status check.
936 - BREAKING CHANGE: Rename worker choice strategy `LESS_RECENTLY_USED` to `LESS_USED`.
937 - Optimize `LESS_USED` worker choice strategy.
938 - Update benchmark versus external threads pools.
939
940 ### Fixed
941
942 - Ensure trimmable characters are checked at pool initialization.
943 - Fix message id integer overflow.
944 - Fix pool worker removal in worker choice strategy internals.
945 - Fix package publication with pnpm.
946
947 ## [2.4.0-2] - 2023-04-03
948
949 ### Added
950
951 - Add `LESS_BUSY` worker choice strategy.
952
953 ### Changed
954
955 - Optimize worker storage in pool.
956 - Optimize worker alive status check.
957 - BREAKING CHANGE: Rename worker choice strategy `LESS_RECENTLY_USED` to `LESS_USED`.
958 - Optimize `LESS_USED` worker choice strategy.
959
960 ### Fixed
961
962 - Ensure trimmable characters are checked at pool initialization.
963 - Fix message id integer overflow.
964 - Fix pool worker removal in worker choice strategy internals.
965 - Fix package publication with pnpm.
966
967 ## [2.4.0-1] - 2023-04-03
968
969 ### Added
970
971 - Add `LESS_BUSY` worker choice strategy.
972
973 ### Changed
974
975 - Optimize worker storage in pool.
976 - Optimize worker alive status check.
977 - BREAKING CHANGE: Rename worker choice strategy `LESS_RECENTLY_USED` to `LESS_USED`.
978 - Optimize `LESS_USED` worker choice strategy.
979
980 ### Fixed
981
982 - Ensure trimmable characters are checked at pool initialization.
983 - Fix message id integer overflow.
984 - Fix pool worker removal in worker choice strategy internals.
985
986 ## [2.4.0-0] - 2023-04-03
987
988 ### Added
989
990 - Add `LESS_BUSY` worker choice strategy.
991
992 ### Changed
993
994 - Optimize worker storage in pool.
995 - Optimize worker alive status check.
996 - BREAKING CHANGE: Rename worker choice strategy `LESS_RECENTLY_USED` to `LESS_USED`.
997 - Optimize `LESS_USED` worker choice strategy.
998
999 ### Fixed
1000
1001 - Ensure trimmable characters are checked at pool initialization.
1002 - Fix message id integer overflow.
1003 - Fix pool worker removal in worker choice strategy internals.
1004
1005 ## [2.3.10] - 2023-03-18
1006
1007 ### Fixed
1008
1009 - Fix package.json `exports` syntax for ESM and CommonJS.
1010
1011 ### Changed
1012
1013 - Permit SemVer pre-release publication.
1014
1015 ## [2.3.10-2] - 2023-03-18
1016
1017 ### Fixed
1018
1019 - Fix package.json `exports` syntax for ESM and CommonJS.
1020
1021 ## [2.3.10-1] - 2023-03-18
1022
1023 ### Changed
1024
1025 - Permit SemVer pre-release publication.
1026
1027 ## [2.3.10-0] - 2023-03-18
1028
1029 ### Fixed
1030
1031 - Fix package.json `exports` syntax for ESM and CommonJS.
1032
1033 ## [2.3.9] - 2023-03-18
1034
1035 ### Changed
1036
1037 - Introduce ESM module support along with CommonJS one.
1038
1039 ### Fixed
1040
1041 - Fix brown paper bag bug referencing the same object literal.
1042
1043 ## [2.3.8] - 2023-03-18
1044
1045 ### Changed
1046
1047 - Switch internal benchmarking code to benny.
1048 - Switch to TypeScript 5.x.x.
1049 - Switch rollup bundler plugins to core ones.
1050 - Switch to TSDoc syntax.
1051 - Enforce conventional commits.
1052
1053 ### Fixed
1054
1055 - Fix random integer generator.
1056 - Fix worker choice strategy pool type identification at initialization.
1057
1058 ## [2.3.7] - 2022-10-23
1059
1060 ### Changed
1061
1062 - Switch to open collective FOSS project funding platform.
1063 - Switch to ts-standard linter configuration on TypeScript code.
1064
1065 ### Fixed
1066
1067 - Fixed missing async on pool execute method.
1068 - Fixed typing in TypeScript example.
1069 - Fixed types in unit tests.
1070
1071 ## [2.3.6] - 2022-10-22
1072
1073 ### Changed
1074
1075 - Cleanup pool attributes and methods.
1076 - Refine error types thrown.
1077
1078 ### Fixed
1079
1080 - Fix continuous integration build on windows.
1081 - Fix code coverage reporting by using c8 instead of nyc.
1082
1083 ## [2.3.5] - 2022-10-21
1084
1085 ### Changed
1086
1087 - Improve benchmarks: add IO intensive task workload, add task size option, integrate code into linter.
1088 - Optimize tasks usage lookup implementation.
1089
1090 ### Fixed
1091
1092 - Fix missed pool event emitter type export.
1093 - Fix typedoc documentation generation.
1094
1095 ## [2.3.4] - 2022-10-17
1096
1097 ### Added
1098
1099 - Fully automate release process with release-it.
1100
1101 ### Changed
1102
1103 - Optimize fair share task scheduling algorithm implementation.
1104 - Update benchmark versus external pools results with latest version.
1105
1106 ## [2.3.3] - 2022-10-15
1107
1108 ### Added
1109
1110 - Add support for [cluster settings](https://nodejs.org/api/cluster.html#cluster_cluster_settings) in cluster pool options.
1111
1112 ## [2.3.2] - 2022-10-14
1113
1114 ### Changed
1115
1116 - Optimize fair share worker selection strategy implementation.
1117
1118 ### Fixed
1119
1120 - Fix WRR worker selection strategy: ensure the condition triggering the round robin can be fulfilled.
1121
1122 ## [2.3.1] - 2022-10-13
1123
1124 ### Added
1125
1126 - Pool worker choice strategies:
1127 - `WorkerChoiceStrategies.WEIGHTED_ROUND_ROBIN` strategy based on weighted round robin scheduling algorithm using tasks execution time for now.
1128 - `WorkerChoiceStrategies.FAIR_SHARE` strategy based on fair share scheduling algorithm using tasks execution time for now.
1129
1130 ## [2.2.2] - 2022-10-09
1131
1132 ### Fixed
1133
1134 - Fixed `README.md` file.
1135
1136 ## [2.2.1] - 2022-10-08
1137
1138 ### Added
1139
1140 - Dynamic worker choice strategy change at runtime.
1141
1142 ## [2.2.0] - 2022-01-05
1143
1144 ### Breaking Changes
1145
1146 - Support only Node.js version 16.x.x for cluster pool: upstream cluster API have changed on that version.
1147
1148 ## [2.1.0] - 2021-08-29
1149
1150 ### Added
1151
1152 - Add an optional pool option `messageHandler` to `PoolOptions<Worker>` for registering a message handler callback on each worker.
1153
1154 ### Breaking Changes
1155
1156 - `AbstractWorker` class `maxInactiveTime`, `killBehavior` and `async` attributes have been removed in favour of the same ones in the worker options `opts` public attribute.
1157 - `AbstractWorker` class `lastTask` attribute have been renamed to `lastTaskTimestamp`.
1158 - `AbstractWorker` class `interval` attribute have been renamed to `aliveInterval`.
1159 - `AbstractWorker` class cannot be instantiated without specifying the `mainWorker` argument referencing the main worker.
1160
1161 ## [2.0.2] - 2021-05-12
1162
1163 ### Bug fixes
1164
1165 - Fix `busy` event emission on fixed pool type
1166
1167 ## [2.0.1] - 2021-03-16
1168
1169 ### Bug fixes
1170
1171 - Check if pool options are properly set.
1172 - `busy` event is emitted on all pool types.
1173
1174 ## [2.0.0] - 2021-03-01
1175
1176 ### Bug fixes
1177
1178 - Now a thread/process by default is not deleted when the task submitted take more time than maxInactiveTime configured (issue #70).
1179
1180 ### Breaking Changes
1181
1182 - `FullPool` event is now renamed to `busy`.
1183 - `maxInactiveTime` on `ThreadWorker` default behavior is now changed, if you want to keep the old behavior set `killBehavior` to `KillBehaviors.HARD`.
1184 _Find more details on our JSDoc._
1185
1186 - `maxTasks` option on `FixedThreadPool` and `DynamicThreadPool` is now removed since is no more needed.
1187
1188 - We changed some internal structures, but you shouldn't be too affected by them as these are internal changes.
1189
1190 ### Pool options types declaration merge
1191
1192 `FixedThreadPoolOptions` and `DynamicThreadPoolOptions` type declarations have been merged to `PoolOptions<Worker>`.
1193
1194 #### New `export` strategy
1195
1196 ```js
1197 // Before
1198 const DynamicThreadPool = require('poolifier/lib/dynamic')
1199 // After
1200 const { DynamicThreadPool } = require('poolifier/lib/dynamic')
1201 ```
1202
1203 But you should always prefer just using
1204
1205 ```js
1206 const { DynamicThreadPool } = require('poolifier')
1207 ```
1208
1209 #### New type definitions for input data and response
1210
1211 For cluster worker and worker-thread pools, you can now only send and receive structured-cloneable data.
1212 _This is not a limitation by poolifier but Node.js._
1213
1214 #### Public property replacements
1215
1216 `numWorkers` property is now `numberOfWorkers`
1217
1218 #### Internal (protected) properties and methods renaming
1219
1220 These properties are not intended for end users
1221
1222 - `id` => `nextMessageId`
1223
1224 These methods are not intended for end users
1225
1226 - `_chooseWorker` => `chooseWorker`
1227 - `_newWorker` => `createWorker`
1228 - `_execute` => `internalExecute`
1229 - `_chooseWorker` => `chooseWorker`
1230 - `_checkAlive` => `checkAlive`
1231 - `_run` => `run`
1232 - `_runAsync` => `runAsync`
1233
1234 ## [1.1.0] - 2020-05-21
1235
1236 ### Added
1237
1238 - ThreadWorker support async functions as option
1239 - Various external library patches
1240
1241 ## [1.0.0] - 2020-01-24
1242
1243 ### Added
1244
1245 - FixedThreadPool implementation
1246 - DynamicThreadPool implementation
1247 - WorkerThread implementation to improve developer experience