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