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