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