chore: v3.1.24
[poolifier.git] / CHANGELOG.md
CommitLineData
522eea03 1# Changelog
2
3All notable changes to this project will be documented in this file.
4
d4abc60a 5The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
522eea03 6and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
45a5a54c 8## [Unreleased]
9aa78bcb 9
8fddc9ad
JB
10## [3.1.24] - 2024-03-27
11
fcc6278e
JB
12### Fixed
13
14- Fix publishing on JSR.
15
7586f5a8
JB
16## [3.1.23] - 2024-03-27
17
b7bb8586
JB
18### Changed
19
20- Publish on JSR.
21
01f4a5ce
JB
22## [3.1.22] - 2024-03-15
23
d67bed32
JB
24### Fixed
25
26- Fix pool event emitter registered callbacks removal at `destroy()`.
27
6fd820e6
JB
28## [3.1.21] - 2024-02-22
29
369179f6
JB
30### Fixed
31
32- Fix null exception regression: [#1496](https://github.com/poolifier/poolifier/issues/1496).
33
c96e6364
JB
34## [3.1.20] - 2024-02-11
35
d20cde84
JB
36### Fixed
37
38- Ensure `worker_threads` workers are unreferenced at termination.
39
a7358578
JB
40## [3.1.19] - 2024-01-16
41
16d7e943
JB
42### Fixed
43
44- Fix possible null exception at task finishing handling.
45
57bf289f
JB
46### Changed
47
48- Optimize Deque implementation to improve tasks queueing performance.
49
7cf320c9
JB
50## [3.1.18] - 2024-01-06
51
6d7beb8c
JB
52### Fixed
53
54- Fix dynamic pool with minimum number of workers set to zero: [#1748](https://github.com/poolifier/poolifier/issues/1748).
55
a4bc8d0e
JB
56## [3.1.17] - 2024-01-05
57
2b6b412f
JB
58### Changed
59
60- Improve performance by clean up unneeded condition checks on hot code paths.
61
0d64fd53
JB
62## [3.1.16] - 2024-01-03
63
4302d959
JB
64### Fixed
65
66- Add missing type to TS type definitions.
67
9122cc2c
JB
68## [3.1.15] - 2024-01-02
69
a4d25410
JB
70### Fixed
71
72- Fix CommonJS support with TypeScript: [#1821](https://github.com/poolifier/poolifier/issues/1821).
73
565b7e65
JB
74## [3.1.15-0] - 2024-01-02
75
63406ebd
JB
76### Fixed
77
a4d25410 78- Fix CommonJS support with TypeScript: [#1821](https://github.com/poolifier/poolifier/issues/1821).
63406ebd 79
56412ef4
JB
80## [3.1.14] - 2024-01-01
81
e44639e9
JB
82### Fixed
83
84- Properly handle dynamic pool with zero minimum size.
85
5e133e82
JB
86## [3.1.13] - 2023-12-30
87
b20bf19a
JB
88### Changed
89
90- Reduce branching in several hot code paths.
91- Use faster object cloning implementation.
92
60aa9f2f
JB
93## [3.1.12] - 2023-12-27
94
28883f84
JB
95### Fixed
96
97- Fix tasks redistribution triggers at pool destroying.
98
99### Changed
100
101- Switch TypeScript module resolution to Node16.
102
164c80dd
JB
103## [3.1.12-0] - 2023-12-27
104
f4ef37a8
JB
105### Fixed
106
107- Fix tasks redistribution triggers at pool destroying.
108
0766991a
JB
109## [3.1.11] - 2023-12-24
110
5eb72b9e
JB
111### Fixed
112
113- Avoid worker node cross tasks stealing.
114- Ensure only half the pool worker nodes can steal tasks.
115
4618ccfd
JB
116## [3.1.10] - 2023-12-23
117
09616edb
JB
118### Changed
119
120- Avoid useless branching on pool type.
121
bba20209
JB
122## [3.1.9] - 2023-12-22
123
2889bd70
JB
124### Changed
125
126- Readd ThreadPoolOptions and ClusterPoolOptions TS type aliases to PoolOptions.
127
b1bbc365
JB
128## [3.1.8] - 2023-12-21
129
ad3836ed
JB
130### Fixed
131
132- Fix default worker weight computation.
133- Fix possible null exception at pool destroying.
134
72523ab9
JB
135## [3.1.7] - 2023-12-20
136
55d7d600
JB
137### Fixed
138
139- Ensure worker choice strategies implementation wait for worker node readiness: [#1748](https://github.com/poolifier/poolifier/issues/1748).
140
165f3d56
JB
141## [3.1.6] - 2023-12-18
142
85b2561d
JB
143### Fixed
144
145- Fix pool destroying with tasks queuing enabled.
146
6c8cec9e
JB
147## [3.1.5] - 2023-12-18
148
32b141fd
JB
149### Added
150
151- Add queued tasks end timeout support to worker node termination.
152
f11ec29c
JB
153## [3.1.4] - 2023-12-18
154
4e0afe97
JB
155### Fixed
156
157- Make more robust the fix for possible null exception at handling task execution response.
158
f592ef16
JB
159## [3.1.3] - 2023-12-17
160
9b358e72
JB
161### Fixed
162
163- Fix possible null exception at handling task execution response.
164
c61772e5
JB
165## [3.1.2] - 2023-12-17
166
87347ea8
JB
167### Fixed
168
32b141fd 169- Wait for queued tasks to end at worker node termination.
87347ea8 170
6e664bec
JB
171## [3.1.1] - 2023-12-16
172
51280f9b
JB
173### Fixed
174
175- Fix pool options TS type definition.
176
5362c66b
JB
177## [3.1.0] - 2023-12-16
178
c3719753
JB
179### Changed
180
181- TypeScript breaking change: merge ThreadPoolOptions and ClusterPoolOptions types into PoolOptions type.
182
42321a2b
JB
183## [3.0.14] - 2023-12-13
184
fa548cda
JB
185### Fixed
186
187- Fix possible null exception with worker_threads pools.
188
d727d871
JB
189## [3.0.13] - 2023-12-12
190
fb5a7307
JB
191### Fixed
192
193- Ensure worker choice strategy wait for worker nodes readiness.
194
195### Changed
196
197- Remove infinite retries support in worker choice strategy to avoid configuration leading to possible infinite recursion or loop.
198
90a43710
JB
199## [3.0.12] - 2023-12-12
200
9aa78bcb
JB
201### Changed
202
203- Add infinite retries support in worker choice strategy.
45a5a54c 204
d8163b08
JB
205## [3.0.11] - 2023-12-11
206
f18fd12b
JB
207### Fixed
208
457dd3dc 209- Ensure pool asynchronous resource properly track tasks execution.
f18fd12b 210
bd453998
JB
211## [3.0.10] - 2023-12-08
212
cb71d660
JB
213### Changed
214
457dd3dc 215- Add a fastpath when tasks stealing or redistribution is impossible.
cb71d660 216
d7164344
JB
217## [3.0.9] - 2023-11-26
218
78f60f82
JB
219### Fixed
220
221- Remove all pool events listener at pool destroying.
222- Remove all worker node events listener at worker node destroying.
9f99eb9b 223- Fix worker node event emitter listeners handling memory leak at pool options runtime change.
78f60f82 224
0c08a681
JB
225## [3.0.8] - 2023-11-25
226
463226a4
JB
227### Fixed
228
457dd3dc 229- Ensure continuous tasks stealing on idle start at worker node idling.
463226a4 230
14dad1fd
JB
231## [3.0.7] - 2023-11-24
232
65542a35
JB
233### Changed
234
235- Make continuous tasks stealing start at worker node idling.
236
82c5db63
JB
237## [3.0.6] - 2023-11-24
238
711623b8
JB
239### Fixed
240
b51d8596 241- Ensure pool statuses are checked at initialization, `start()` or `destroy()`.
55082af9 242- Ensure pool `ready` event can be emitted after several `start()/destroy()` cycles.
711623b8 243
5aa31a74
JB
244## [3.0.5] - 2023-10-27
245
d91689fd
JB
246### Fixed
247
55082af9 248- Ensure pool `ready` event can be emitted only once.
d91689fd 249
597775b2
JB
250## [3.0.4] - 2023-10-20
251
03fb313b
JB
252### Changed
253
49d60f11 254- Switch to Bencher for benchmarking: [https://bencher.dev/perf/poolifier](https://bencher.dev/perf/poolifier).
03fb313b
JB
255- Use builtin retry mechanism in worker choice strategies instead of custom one.
256
6c285176
JB
257## [3.0.3] - 2023-10-19
258
9761e404
JB
259### Fixed
260
261- Avoid null exception at sending message to worker.
535fd8d5 262- Avoid null exception at checking worker node readiness.
9761e404 263
358dc40f
JB
264## [3.0.2] - 2023-10-17
265
97256a85
JB
266### Fixed
267
c3c2b35e 268- 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).
97256a85 269
7a570743
JB
270## [3.0.1] - 2023-10-16
271
dbfa7948
JB
272### Fixed
273
fc84edac 274- Workaround possible race condition at work nodes array element removal and querying. See issue [#1468](https://github.com/poolifier/poolifier/issues/1468).
dbfa7948 275
365f13e4
JB
276### Changed
277
c3c2b35e 278- Switch the worker node eventing code to `EventTarget` API.
365f13e4 279
003b3275
JB
280## [3.0.0] - 2023-10-08
281
277c49bf
JB
282### Changed
283
284- Remove Node.js 16.x.x (EOL) support.
285
3c9e911a
JB
286## [2.7.5] - 2023-10-03
287
f80125ca
JB
288### Changed
289
290- Use `EventEmitterAsyncResource` type from `@types/node` for pool event emitter. TypeScript users will need to update to latest `@types/node` version.
291
3466e757
JB
292## [2.7.4] - 2023-09-25
293
67b26ae2
JB
294### Fixed
295
296- Fix source maps (bundler issue).
297
eeb1f961
JB
298## [2.7.3] - 2023-09-24
299
b5604034
JB
300### Changed
301
302- Convert pool event emitter to event emitter async resource.
303
f2df6dc8
JB
304## [2.7.2] - 2023-09-23
305
116ca64b
JB
306### Changed
307
308- Add source maps to npm package to ease debugging.
309
1e319a70
JB
310### Added
311
312- Continuous benchmarking versus other worker pools: [https://poolifier.github.io/benchmark](https://poolifier.github.io/benchmark).
313
aab2819b
JB
314## [2.7.1] - 2023-09-20
315
ae036c3e
JB
316### Fixed
317
318- Ensure worker message listener used one time are removed after usage.
319
15d7c489
JB
320## [2.7.0] - 2023-09-19
321
160557ff
JB
322### Fixed
323
324- Fix task stealing related tasks queue options handling at runtime.
325
c3284191
JB
326### Changed
327
328- Rename `listTaskFunctions()` to `listTaskFunctionNames()` in pool and worker API.
329
330### Added
331
35808931 332- Add `hasTaskFunction()`, `addTaskFunction()`, `removeTaskFunction()`, `setDefaultTaskFunction()` methods to pool API: [PR #1148](https://github.com/poolifier/poolifier/pull/1148).
c20084b6 333- Stricter worker constructor arguments validation.
c3284191 334
04054352
JB
335## [2.6.45] - 2023-09-17
336
093af25b
JB
337### Changed
338
339- Disable publication on GitHub packages registry on release until authentication issue is fixed.
09d9af02
JB
340
341### Added
342
ce0ab2d7 343- Add `startWorkers` to pool options to whether start the minimum number of workers at pool initialization or not.
cde5b54e 344- Add `start()` method to pool API to start the minimum number of workers.
af98b972 345- 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.
1e319a70 346- Continuous internal benchmarking: [https://poolifier.github.io/benchmark-results/dev/bench](https://poolifier.github.io/benchmark-results/dev/bench).
f1c674cd 347
bce9ffdf
JB
348## [2.6.44] - 2023-09-08
349
4cb259d3
JB
350### Fixed
351
352- Use a dedicated PAT to publish on GitHub packages registry.
353
354### Added
355
356- Publish on GitHub packages registry on release.
357
358### Changed
359
360- Switch from rome to biome: [PR #1128](https://github.com/poolifier/poolifier/pull/1128).
361
fbda1e26
JB
362## [2.6.43] - 2023-09-08
363
15fc82ba
JB
364### Added
365
4cb259d3 366- Publish on GitHub packages registry on release.
15fc82ba
JB
367
368### Changed
369
4cb259d3 370- Switch from rome to biome: [PR #1128](https://github.com/poolifier/poolifier/pull/1128).
15fc82ba 371
b47306a3
JB
372## [2.6.42] - 2023-09-06
373
ad11ca81
JB
374### Changed
375
376- Optimize hot code paths implementation: avoid unnecessary branching, add and use optimized helpers (min, max), use reduce() array helper, ...
377
1b37751d
JB
378## [2.6.41] - 2023-09-03
379
f3a91bac
JB
380### Changed
381
382- Optimize worker choice strategies implementation.
383
7790a494
JB
384## [2.6.40] - 2023-09-01
385
6fe200b4
JB
386### Fixed
387
388- Do not pre-choose in WRR worker choice strategy to avoid bias.
68738842 389- Avoid array out of bound in worker choice strategies after worker node removal.
6fe200b4 390
766c7f84
JB
391## [2.6.39] - 2023-08-30
392
edf8ce4e
JB
393### Fixed
394
4cb259d3 395- Fix race condition in worker choice strategies at worker node info querying while not yet initialized.
edf8ce4e 396
904a5689
JB
397## [2.6.38] - 2023-08-30
398
b40c4b06
JB
399### Added
400
401- Bundle typescript types declaration into one file.
402
619f403b
JB
403### Changed
404
405- Improve interleaved weighted round robin worker choice strategy implementation.
406
5a24d71c
JB
407## [2.6.37] - 2023-08-28
408
bdb9d712
JB
409### Fixed
410
411- Ensure unused worker usage statistics are deleted at runtime.
412
8c0b113f
JB
413### Changed
414
415- Rename worker choice strategy options `choiceRetries` to `retries`.
574c5c8d 416- Avoid unnecessary branching in worker choice strategies.
8c0b113f 417
ba821940
JB
418## [2.6.36] - 2023-08-27
419
9d2d0da1
JB
420### Fixed
421
422- Fix pool `execute()` arguments check.
423
1f0766e7
JB
424### Changed
425
426- Make continuous tasks stealing algorithm less aggressive.
8780236f 427- Fine tune tasks stealing algorithm under back pressure.
1f0766e7 428
ffd2c1ff
JB
429## [2.6.35] - 2023-08-25
430
dc021bcc
JB
431### Fixed
432
433- Don't account worker usage statistics for tasks that have failed.
3baa0837 434- Fix pool information runtime and wait time median computation.
dc021bcc
JB
435
436### Changed
437
438- Update simple moving average implementation to use a circular buffer.
439- Update simple moving median implementation to use a circular buffer.
68cbdc84
JB
440- Account for stolen tasks in worker usage statistics and pool information.
441
442### Added
443
444- Continuous tasks stealing algorithm.
dc021bcc 445
c58bc2a1
JB
446## [2.6.34] - 2023-08-24
447
0bc68267
JB
448### Fixes
449
450- Avoid cascading tasks stealing under back pressure.
451
452### Changed
453
454- Add fastpath to queued tasks rescheduling.
455
39fb7ad0
JB
456## [2.6.33] - 2023-08-24
457
dd951876
JB
458### Fixed
459
460- Fix queued tasks rescheduling.
461
ff3f866a
JB
462### Changed
463
464- Rename tasks queue options `queueMaxSize` to `size`.
465
a6b3272b 466### Added
dd951876 467
a6b3272b 468- Task stealing scheduling algorithm if tasks queueing is enabled.
dd951876 469
c55c9b5d
JB
470## [2.6.32] - 2023-08-23
471
15b176e0
JB
472### Fixed
473
474- Ensure no task can be executed when the pool is destroyed.
475
20c6f652
JB
476### Added
477
478- Add `queueMaxSize` option to tasks queue options.
574b351d 479- Add O(1) deque implementation implemented with doubly linked list and use it for tasks queueing.
72695f86 480- Add tasks stealing algorithm when a worker node queue is back pressured if tasks queueing is enabled.
20c6f652 481
e560a9f2
JB
482## [2.6.31] - 2023-08-20
483
b1aae695
JB
484### Fixed
485
3e8611a8 486- Fix worker choice strategy retries mechanism in some edge cases.
b1aae695 487
94407def
JB
488### Changed
489
e695d66f 490- Make orthogonal worker choice strategies tasks distribution and created dynamic worker usage.
a71b05bc 491- Remove the experimental status of the `LEAST_ELU` worker choice strategy.
94407def 492
962b9863
JB
493## [2.6.30] - 2023-08-19
494
33e6bb4c
JB
495### Fixed
496
497- Ensure pool event `backPressure` is emitted.
498- Ensure pool event `full` is emitted only once.
8735b4e5 499- Ensure worker node cannot be instantiated without proper arguments.
33e6bb4c 500
8cc4ea81
JB
501## [2.6.29] - 2023-08-18
502
6169563b
JB
503### Fixed
504
55082af9 505- Fix race condition between readiness and task functions worker message handling at startup.
5dd4043c 506- Fix duplicate task function worker usage statistics computation per task function.
db0e38ee 507- Update task function worker usage statistics if and only if there's at least two different task functions.
5bb5be17 508- Fix race condition at task function worker usage executing task computation leading to negative value.
6169563b 509
8990357d
JB
510### Added
511
445264e8 512- 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).
8990357d
JB
513- Use back pressure detection in worker choice strategies.
514- Add worker choice strategies retries mechanism if no worker is eligible.
515
21157987
JB
516## [2.6.28] - 2023-08-16
517
f05ed93c
JB
518### Fixed
519
520- Ensure pool workers are properly initialized.
521
12d67776
JB
522### Added
523
524- HTTP server pool examples: express-cluster, express-hybrid.
525
d18fccb1
JB
526### Changed
527
528- Remove now useless branching in worker hot code path.
529
741cdb34
JB
530## [2.6.27] - 2023-08-15
531
50e7f498
JB
532### Fixed
533
534- Add `KillHandler` type definition to exported types.
535
ef3891a3
JB
536### Added
537
538- Add `destroy` event to pool API.
539
e9dc6efa
JB
540## [2.6.26] - 2023-08-15
541
2b099bf7
JB
542### Added
543
544- Add kill handler to worker options allowing to execute custom code when worker is killed.
ef3891a3 545- Add `listTaskFunctions()` method to pool API.
1f4553c6 546- SMTP client pool example: nodemailer.
2b099bf7 547
5b726f72
JB
548## [2.6.25] - 2023-08-13
549
72855e92
JB
550### Added
551
3b311539 552- HTTP server pool examples: fastify-cluster, fastify-hybrid.
02999424 553- WebSocket server pool examples: ws-cluster, ws-hybrid.
72855e92 554
7aadd6e5
JB
555## [2.6.24] - 2023-08-12
556
7d91a8cd
JB
557### Added
558
559- Add array of transferable objects to the `execute()` method arguments.
02999424 560- WebSocket server pool examples: ws-worker_threads.
7d91a8cd 561
6b4263b4
JB
562## [2.6.23] - 2023-08-11
563
3d76750a 564### Fixed
8e0af894 565
3d76750a 566- 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.
9606b474 567
3d76750a
JB
568### Added
569
570- HTTP client pool examples: fetch, node-fetch and axios with multiple task functions.
02999424 571- HTTP server pool examples: express-worker_threads, fastify-worker_threads.
3d76750a
JB
572
573## [2.6.22] - 2023-08-10
9606b474 574
3d76750a 575### Fixed
9606b474
JB
576
577- Add missing `types` field to package.json `exports`.
578
3d76750a
JB
579### Changed
580
581- Structure markdown documentation (PR #811).
582
d9647bdd
JB
583## [2.6.21] - 2023-08-03
584
2111ec12
JB
585### Changed
586
587- Improve code documentation.
588- Code refactoring and cleanup for better maintainability and readability.
589
5c30b9d9
JB
590## [2.6.20] - 2023-07-21
591
10ecf8fd
JB
592### Fixed
593
594- Fix queued tasks redistribution on error task execution starvation.
a1763c54 595- Ensure tasks queueing per worker condition is untangled from the pool busyness semantic.
10ecf8fd 596
aa9eede8
JB
597### Changed
598
7c89e6a4 599- Drastically reduce lookups by worker in the worker nodes.
aa9eede8 600
62485908
JB
601## [2.6.19] - 2023-07-20
602
2e2ef9c3
JB
603### Added
604
605- Dedicated internal communication channel for worker_threads pools.
606
8f4c9491
JB
607## [2.6.18] - 2023-07-19
608
8660b972
JB
609### Changed
610
611- Code refactoring and cleanup for better maintainability and readability. Bundle size is a bit smaller.
612
206a3519
JB
613## [2.6.17] - 2023-07-16
614
b4899fae
JB
615### Added
616
1a3e01ba 617- Add `listTaskFunctions()` method to worker API.
b4899fae 618
58a06a6c
JB
619## [2.6.16] - 2023-07-12
620
2a69b8c5
JB
621### Fixed
622
80520ca4 623- Fix pool startup detection.
2a69b8c5
JB
624- Fix worker task functions handling.
625
b5900b02
JB
626## [2.6.15] - 2023-07-11
627
19dbc45b
JB
628### Added
629
630- Take into account worker node readiness in worker choice strategies.
631
4a0db581
JB
632## [2.6.14] - 2023-07-10
633
87e44747
JB
634### Fixed
635
636- Fix task function statistics tracking.
637
0265272f
JB
638## [2.6.13] - 2023-07-10
639
968a2e8c
JB
640### Added
641
642- Add per task function statistics tracking.
782299f8 643- Add public methods to manipulate the worker task functions at runtime.
968a2e8c 644
44c8c00f
JB
645## [2.6.12] - 2023-07-09
646
aa4bf4b2
JB
647### Fixed
648
649- Workaround import issue with `node:os` module in node 16.x.x.
650
b7cfced1
JB
651## [2.6.11] - 2023-07-09
652
d5024c00
JB
653### Fixed
654
655- Fix pool readiness semantic.
656
f313a208
JB
657## [2.6.10] - 2023-07-08
658
2431bdb4
JB
659### Fixed
660
661- Ensure workers are not recreated on error at pool startup.
662
663### Added
664
665- Add `ready` and `strategy` fields to pool information.
666- Add pool event `ready` to notify when the number of workers created in the pool has reached the maximum size expected and are ready.
caadbd41 667- Add dynamic pool sizing checks.
2431bdb4 668
369d0a51
JB
669## [2.6.9] - 2023-07-07
670
2845f2a5
JB
671### Fixed
672
673- Recreate the right worker type on uncaught exception.
674
675### Added
676
677- Add minimum and maximum to internal measurement statistics.
1dcf8b7b 678- Add `runTime` and `waitTime` to pool information.
75d3401a 679- Check worker inactive time only on dynamic worker.
2845f2a5 680
fc97d613
JB
681## [2.6.8] - 2023-07-03
682
92b1feaa
JB
683### Fixed
684
685- Brown paper bag release to fix version handling in pool information.
686
52d54060
JB
687## [2.6.7] - 2023-07-03
688
5bc91f3e
JB
689### Fixed
690
691- Ensure worker queued tasks at error are reassigned to other pool workers.
692
afe0d5bf
JB
693### Added
694
695- Add pool `utilization` ratio to pool information.
23ccf9d7 696- Add `version` to pool information.
e5b3047d 697- Add worker information to worker nodes.
afe0d5bf 698
f42c583f
JB
699## [2.6.6] - 2023-07-01
700
6961ca9a
JB
701### Added
702
d5e3c4ff 703- Add safe helper `availableParallelism()` to help sizing the pool.
6961ca9a 704
3749facb
JB
705### Fixed
706
707- Ensure message handler is only registered in worker.
708
6fed2513
JB
709## [2.6.5] - 2023-06-27
710
c72f6987
JB
711### Known issues
712
70726c28 713- Cluster pools tasks execution are not working by using ESM files extension: https://github.com/poolifier/poolifier/issues/782
c72f6987
JB
714
715### Fixed
716
717- Artificial version bump to 2.6.5 to workaround publication issue.
d5e3c4ff 718- Ensure cluster pool `destroy()` gracefully shutdowns worker's server.
c72f6987
JB
719- Ensure pool event is emitted before task error promise rejection.
720- Fix queued tasks count computation.
721
722### Removed
723
2fbe1783 724- Remove unneeded worker_threads worker `MessageChannel` internal usage for IPC.
c72f6987 725
6426631b
JB
726## [2.6.4] - 2023-06-27
727
941f9a7c
JB
728### Known issues
729
70726c28 730- Cluster pools tasks execution are not working by using ESM files extension: https://github.com/poolifier/poolifier/issues/782
941f9a7c 731
2c039e43
JB
732### Fixed
733
d5e3c4ff 734- Ensure cluster pool `destroy()` gracefully shutdowns worker's server.
2c039e43 735- Ensure pool event is emitted before task error promise rejection.
9c16fb4b 736- Fix queued tasks count computation.
2c039e43 737
941f9a7c
JB
738### Removed
739
2fbe1783 740- Remove unneeded worker_threads worker `MessageChannel` internal usage for IPC.
941f9a7c 741
bc1b0765
JB
742## [2.6.3] - 2023-06-19
743
a6a2dc4c
JB
744### Fixed
745
746- Ensure no tasks are queued when trying to soft kill a dynamic worker.
f0d7f803 747- Update strategies internals after statistics computation.
a6a2dc4c 748
7b56f532
JB
749### Changed
750
751- Optimize O(1) queue implementation.
752
b628596c
JB
753## [2.6.2] - 2023-06-12
754
a9e89d00
JB
755### Fixed
756
757- Fix new worker use after creation in dynamic pool given the current worker choice strategy.
758
4368a898
JB
759## [2.6.1] - 2023-06-10
760
931d43e2
JB
761### Added
762
13ab5b87 763- Add worker choice strategy documentation: [README.md](./docs/worker-choice-strategies.md).
931d43e2 764
f1c06930
JB
765### Fixed
766
767- Fix average statistics computation: ensure failed tasks are not accounted.
768
16671b07
JB
769## [2.6.0] - 2023-06-09
770
a1347286
JB
771### Added
772
5af9c0f7 773- Add `LEAST_ELU` worker choice strategy (experimental).
9adcefab 774- Add tasks ELU instead of runtime support to `FAIR_SHARE` worker choice strategy.
a1347286 775
1c6fe997
JB
776### Changed
777
778- Refactor pool worker node usage internals.
477f48e7 779- Breaking change: refactor worker choice strategy statistics requirements: the syntax of the worker choice strategy options has changed.
f63a9dda 780- Breaking change: pool information `info` property object fields have been renamed.
1c6fe997
JB
781
782### Fixed
783
784- Fix wait time accounting.
785- Ensure worker choice strategy `LEAST_BUSY` accounts also tasks wait time.
786- Ensure worker choice strategy `LEAST_USED` accounts also queued tasks.
787
aa07d6ee
JB
788## [2.5.4] - 2023-06-07
789
b6b32453
JB
790### Added
791
792- Add Event Loop Utilization (ELU) statistics to worker tasks usage.
793
794### Changed
795
796- Compute statistics at the worker level only if needed.
2fbe1783 797- Add `worker_threads` options to thread pool options.
b6b32453 798
272d4d8f
JB
799### Fixed
800
801- Make the `LEAST_BUSY` strategy only relies on task runtime.
802
ed47fb3d
JB
803## [2.5.3] - 2023-06-04
804
89a4abfd
JB
805### Changed
806
807- Refine pool information content.
b4213b7f 808- Limit pool internals public exposure.
89a4abfd 809
8a9febf5
JB
810## [2.5.2] - 2023-06-02
811
91ee39ed
JB
812### Added
813
814- Add `taskError` pool event for task execution error.
6b27d407 815- Add pool information `info` property to pool.
91ee39ed
JB
816- Emit pool information on `busy` and `full` pool events.
817
8babb151
JB
818## [2.5.1] - 2023-06-01
819
0e05c4dc
JB
820### Added
821
1f68cede 822- Add pool option `restartWorkerOnError` to restart worker on uncaught error. Default to `true`.
91ee39ed 823- Add `error` pool event for uncaught worker error.
0e05c4dc 824
a8766181
JB
825## [2.5.0] - 2023-05-31
826
e4543b14
JB
827### Added
828
829- Switch pool event emitter to `EventEmitterAsyncResource`.
6da80d38 830- Add tasks wait time accounting in per worker tasks usage.
5af9c0f7 831- Add interleaved weighted round robin `INTERLEAVED_WEIGHTED_ROUND_ROBIN` worker choice strategy (experimental).
e4543b14
JB
832
833### Changed
834
835- Renamed worker choice strategy `LESS_BUSY` to `LEAST_BUSY` and `LESS_USED` to `LEAST_USED`.
836
570efb11
JB
837## [2.4.14] - 2023-05-09
838
b0f28bad
JB
839### Fixed
840
841- Ensure no undefined task runtime can land in the tasks history.
842- Fix median computation implementation once again.
843
110b6d13
JB
844### Added
845
846- Unit tests for median and queue implementations.
847
72584880
JB
848## [2.4.13] - 2023-05-08
849
b0d6ed8f
JB
850### Fixed
851
e3058615 852- Fix worker choice strategy options validation.
b0d6ed8f
JB
853- Fix fair share worker choice strategy internals update: ensure virtual task end timestamp is computed at task submission.
854
06140c32
JB
855## [2.4.12] - 2023-05-06
856
a86b6df1
JB
857### Added
858
859- Support multiple task functions per worker.
08f3f44c 860- Add custom worker weights support to worker choice strategies options.
a86b6df1 861
29ee7e9a
JB
862### Changed
863
864- Use O(1) queue implementation for tasks queueing.
865
0682ba15
JB
866### Fixed
867
868- Fix median computation implementation.
869- Fix fair share worker choice strategy internals update.
870
936d53ec
JB
871## [2.4.11] - 2023-04-23
872
cb70b19d
JB
873### Changed
874
875- Optimize free worker finding in worker choice strategies.
876
15bb637a
JB
877## [2.4.10] - 2023-04-15
878
ef41a6e6
JB
879### Fixed
880
82ea6492 881- Fix typescript type definition for task function: ensure the input data is optional.
ef41a6e6
JB
882- Fix typescript type definition for pool execute(): ensure the input data is optional.
883
181eb2b4
JB
884## [2.4.9] - 2023-04-15
885
a20f0ba5
JB
886### Added
887
888- Add tasks queue enablement runtime setter to pool.
889- Add tasks queue options runtime setter to pool.
890- Add worker choice strategy options runtime setter to pool.
891
892### Changed
893
894- Remove the tasks queuing experimental status.
895
d4aeae5a
JB
896### Fixed
897
82ea6492 898- Fix task function type definition and validation.
2fc5cae3 899- Fix worker choice strategy options handling.
d4aeae5a 900
1d9e7023
JB
901## [2.4.8] - 2023-04-12
902
f9b4bbf8
JB
903### Fixed
904
905- Fix message between main worker and worker type definition for tasks.
906- Fix code documentation.
907
12ae3210
JB
908## [2.4.7] - 2023-04-11
909
7171d33f
JB
910### Added
911
912- Add worker tasks queue options to pool options.
913
e8bd29ce
JB
914### Fixed
915
916- Fix missing documentation.
917
42c7bc10
JB
918## [2.4.6] - 2023-04-10
919
681196cc
JB
920### Fixed
921
922- Ensure one task at a time is executed per worker with tasks queueing enabled.
1c6fe997 923- Properly count worker executing tasks with tasks queueing enabled.
681196cc 924
54d360e3
JB
925## [2.4.5] - 2023-04-09
926
3fafb1b2
JB
927### Added
928
9e775f96
JB
929- Use monotonic high resolution timer for worker tasks runtime.
930- Add worker tasks median runtime to statistics.
ff733df7 931- Add worker tasks queue (experimental).
3fafb1b2 932
92fa3eb6
JB
933## [2.4.4] - 2023-04-07
934
aee46736
JB
935### Added
936
937- Add `PoolEvents` enumeration and `PoolEvent` type.
938
36b5e78f
JB
939### Fixed
940
ff0c2b3e 941- Destroy worker only on alive check.
36b5e78f 942
9fb0f324
JB
943## [2.4.3] - 2023-04-07
944
28cf3617
JB
945### Fixed
946
947- Fix typedoc generation with inheritance.
948
848f0f27
JB
949## [2.4.2] - 2023-04-06
950
164d950a
JB
951### Added
952
953- Add `full` event to dynamic pool.
32417142 954- Keep worker choice strategy in memory for conditional reuse.
164d950a 955
78ab2555
JB
956### Fixed
957
958- Fix possible negative worker key at worker removal in worker choice strategies.
959
79aafe9f
JB
960## [2.4.1] - 2023-04-05
961
9cd39dd4
JB
962### Changed
963
964- Optimize worker choice strategy for dynamic pool.
965
965415bb
JB
966### Fixed
967
968- Ensure dynamic pool does not alter worker choice strategy expected behavior.
969
d8b60b1c
JB
970## [2.4.0] - 2023-04-04
971
c6bd2650
JB
972### Added
973
974- Add `LESS_BUSY` worker choice strategy.
975
976### Changed
977
978- Optimize worker storage in pool.
979- Optimize worker alive status check.
980- BREAKING CHANGE: Rename worker choice strategy `LESS_RECENTLY_USED` to `LESS_USED`.
981- Optimize `LESS_USED` worker choice strategy.
2a87030e 982- Update benchmark versus external threads pools.
c6bd2650
JB
983- Optimize tasks usage statistics requirements for worker choice strategy.
984
985### Fixed
986
987- Ensure trimmable characters are checked at pool initialization.
988- Fix message id integer overflow.
989- Fix pool worker removal in worker choice strategy internals.
990- Fix package publication with pnpm.
991
d0a3f018
JB
992## [2.4.0-3] - 2023-04-04
993
b2ede285
JB
994### Added
995
996- Add `LESS_BUSY` worker choice strategy.
997
998### Changed
999
1000- Optimize worker storage in pool.
1001- Optimize worker alive status check.
1002- BREAKING CHANGE: Rename worker choice strategy `LESS_RECENTLY_USED` to `LESS_USED`.
1003- Optimize `LESS_USED` worker choice strategy.
2a87030e 1004- Update benchmark versus external threads pools.
b2ede285
JB
1005
1006### Fixed
1007
1008- Ensure trimmable characters are checked at pool initialization.
1009- Fix message id integer overflow.
1010- Fix pool worker removal in worker choice strategy internals.
1011- Fix package publication with pnpm.
1012
a015ea40
JB
1013## [2.4.0-2] - 2023-04-03
1014
698f4bbc
JB
1015### Added
1016
1017- Add `LESS_BUSY` worker choice strategy.
1018
1019### Changed
1020
1021- Optimize worker storage in pool.
1022- Optimize worker alive status check.
1023- BREAKING CHANGE: Rename worker choice strategy `LESS_RECENTLY_USED` to `LESS_USED`.
1024- Optimize `LESS_USED` worker choice strategy.
1025
1026### Fixed
1027
1028- Ensure trimmable characters are checked at pool initialization.
1029- Fix message id integer overflow.
1030- Fix pool worker removal in worker choice strategy internals.
1031- Fix package publication with pnpm.
1032
8fe15920
JB
1033## [2.4.0-1] - 2023-04-03
1034
5b301c28
JB
1035### Added
1036
1037- Add `LESS_BUSY` worker choice strategy.
1038
1039### Changed
1040
1041- Optimize worker storage in pool.
1042- Optimize worker alive status check.
1043- BREAKING CHANGE: Rename worker choice strategy `LESS_RECENTLY_USED` to `LESS_USED`.
1044- Optimize `LESS_USED` worker choice strategy.
1045
1046### Fixed
1047
1048- Ensure trimmable characters are checked at pool initialization.
1049- Fix message id integer overflow.
1050- Fix pool worker removal in worker choice strategy internals.
1051
2fb9ca9c
JB
1052## [2.4.0-0] - 2023-04-03
1053
168c526f
JB
1054### Added
1055
1056- Add `LESS_BUSY` worker choice strategy.
1057
1d71a908
JB
1058### Changed
1059
ffcbbad8 1060- Optimize worker storage in pool.
1d71a908 1061- Optimize worker alive status check.
65a60b3b 1062- BREAKING CHANGE: Rename worker choice strategy `LESS_RECENTLY_USED` to `LESS_USED`.
737c6d97 1063- Optimize `LESS_USED` worker choice strategy.
1d71a908 1064
ffcbbad8
JB
1065### Fixed
1066
1067- Ensure trimmable characters are checked at pool initialization.
b4e75778 1068- Fix message id integer overflow.
97a2abc3 1069- Fix pool worker removal in worker choice strategy internals.
ffcbbad8 1070
08372738
JB
1071## [2.3.10] - 2023-03-18
1072
710826bc
JB
1073### Fixed
1074
9606b474 1075- Fix package.json `exports` syntax for ESM and CommonJS.
710826bc
JB
1076
1077### Changed
1078
1079- Permit SemVer pre-release publication.
76e5ac6f 1080
e4796ecd
JB
1081## [2.3.10-2] - 2023-03-18
1082
6abad580
JB
1083### Fixed
1084
9606b474 1085- Fix package.json `exports` syntax for ESM and CommonJS.
6abad580 1086
a2ee98cc
JB
1087## [2.3.10-1] - 2023-03-18
1088
7e060cee
JB
1089### Changed
1090
90483887 1091- Permit SemVer pre-release publication.
7e060cee 1092
c81bfafb
JB
1093## [2.3.10-0] - 2023-03-18
1094
fe18768d
JB
1095### Fixed
1096
9606b474 1097- Fix package.json `exports` syntax for ESM and CommonJS.
fe18768d 1098
d7b78217
JB
1099## [2.3.9] - 2023-03-18
1100
ed6dd37f
JB
1101### Changed
1102
1103- Introduce ESM module support along with CommonJS one.
1104
1105### Fixed
1106
1107- Fix brown paper bag bug referencing the same object literal.
1108
68e2ad86
JB
1109## [2.3.8] - 2023-03-18
1110
ca6c7d70
JB
1111### Changed
1112
1113- Switch internal benchmarking code to benny.
fbdedeb9
JB
1114- Switch to TypeScript 5.x.x.
1115- Switch rollup bundler plugins to core ones.
ed6dd37f 1116- Switch to TSDoc syntax.
fbdedeb9 1117- Enforce conventional commits.
ca6c7d70 1118
d15211d4
JB
1119### Fixed
1120
1121- Fix random integer generator.
fbdedeb9 1122- Fix worker choice strategy pool type identification at initialization.
d15211d4 1123
995705ea
JB
1124## [2.3.7] - 2022-10-23
1125
b953022b
JB
1126### Changed
1127
1128- Switch to open collective FOSS project funding platform.
78cea37e
JB
1129- Switch to ts-standard linter configuration on TypeScript code.
1130
1131### Fixed
1132
1133- Fixed missing async on pool execute method.
1134- Fixed typing in TypeScript example.
1135- Fixed types in unit tests.
b953022b 1136
3b9f6953
JB
1137## [2.3.6] - 2022-10-22
1138
f80cead4
JB
1139### Changed
1140
1141- Cleanup pool attributes and methods.
1142- Refine error types thrown.
1143
1144### Fixed
1145
1146- Fix continuous integration build on windows.
1147- Fix code coverage reporting by using c8 instead of nyc.
1148
efc22107
JB
1149## [2.3.5] - 2022-10-21
1150
7a6a0a96
JB
1151### Changed
1152
a05c10de
JB
1153- Improve benchmarks: add IO intensive task workload, add task size option, integrate code into linter.
1154- Optimize tasks usage lookup implementation.
7a6a0a96 1155
b4904890
JB
1156### Fixed
1157
1158- Fix missed pool event emitter type export.
1159- Fix typedoc documentation generation.
1160
a875f8d1
JB
1161## [2.3.4] - 2022-10-17
1162
73cda448
JB
1163### Added
1164
1165- Fully automate release process with release-it.
1166
45a5a54c
JB
1167### Changed
1168
73cda448 1169- Optimize fair share task scheduling algorithm implementation.
2a87030e 1170- Update benchmark versus external pools results with latest version.
45a5a54c 1171
90ee1b18 1172## [2.3.3] - 2022-10-15
1a76932b
JB
1173
1174### Added
1175
1176- Add support for [cluster settings](https://nodejs.org/api/cluster.html#cluster_cluster_settings) in cluster pool options.
1177
90ee1b18 1178## [2.3.2] - 2022-10-14
11df3590
JB
1179
1180### Changed
1181
1182- Optimize fair share worker selection strategy implementation.
1183
1184### Fixed
1185
1186- Fix WRR worker selection strategy: ensure the condition triggering the round robin can be fulfilled.
1187
90ee1b18 1188## [2.3.1] - 2022-10-13
23ff945a
JB
1189
1190### Added
1191
1192- Pool worker choice strategies:
1193 - `WorkerChoiceStrategies.WEIGHTED_ROUND_ROBIN` strategy based on weighted round robin scheduling algorithm using tasks execution time for now.
1194 - `WorkerChoiceStrategies.FAIR_SHARE` strategy based on fair share scheduling algorithm using tasks execution time for now.
1195
90ee1b18 1196## [2.2.2] - 2022-10-09
cb2b6c69
JB
1197
1198### Fixed
1199
1200- Fixed `README.md` file.
1201
90ee1b18 1202## [2.2.1] - 2022-10-08
bdacc2d2 1203
bdaf31cd
JB
1204### Added
1205
1206- Dynamic worker choice strategy change at runtime.
bdacc2d2 1207
90ee1b18 1208## [2.2.0] - 2022-01-05
7e0d447f
JB
1209
1210### Breaking Changes
1211
9606b474 1212- Support only Node.js version 16.x.x for cluster pool: upstream cluster API have changed on that version.
7e0d447f 1213
90ee1b18 1214## [2.1.0] - 2021-08-29
35cf1c03
JB
1215
1216### Added
1217
1218- Add an optional pool option `messageHandler` to `PoolOptions<Worker>` for registering a message handler callback on each worker.
e088a00c
JB
1219
1220### Breaking Changes
1221
1222- `AbstractWorker` class `maxInactiveTime`, `killBehavior` and `async` attributes have been removed in favour of the same ones in the worker options `opts` public attribute.
1223- `AbstractWorker` class `lastTask` attribute have been renamed to `lastTaskTimestamp`.
1224- `AbstractWorker` class `interval` attribute have been renamed to `aliveInterval`.
c365b2d3 1225- `AbstractWorker` class cannot be instantiated without specifying the `mainWorker` argument referencing the main worker.
e088a00c 1226
90ee1b18 1227## [2.0.2] - 2021-05-12
14916bf9
JB
1228
1229### Bug fixes
1230
1231- Fix `busy` event emission on fixed pool type
1232
90ee1b18 1233## [2.0.1] - 2021-03-16
7f685093
JB
1234
1235### Bug fixes
1236
1237- Check if pool options are properly set.
1238- `busy` event is emitted on all pool types.
1239
90ee1b18 1240## [2.0.0] - 2021-03-01
fa0f5b28 1241
f3f833ab 1242### Bug fixes
d63d3be3 1243
ddbeaffd 1244- Now a thread/process by default is not deleted when the task submitted take more time than maxInactiveTime configured (issue #70).
d63d3be3 1245
fa0f5b28
S
1246### Breaking Changes
1247
7f685093 1248- `FullPool` event is now renamed to `busy`.
1927ee67 1249- `maxInactiveTime` on `ThreadWorker` default behavior is now changed, if you want to keep the old behavior set `killBehavior` to `KillBehaviors.HARD`.
1a81f8af 1250 _Find more details on our JSDoc._
ddbeaffd 1251
1927ee67
APA
1252- `maxTasks` option on `FixedThreadPool` and `DynamicThreadPool` is now removed since is no more needed.
1253
ddbeaffd 1254- We changed some internal structures, but you shouldn't be too affected by them as these are internal changes.
fa0f5b28 1255
ec2ccfc8
JB
1256### Pool options types declaration merge
1257
1258`FixedThreadPoolOptions` and `DynamicThreadPoolOptions` type declarations have been merged to `PoolOptions<Worker>`.
1259
fa0f5b28
S
1260#### New `export` strategy
1261
1262```js
1263// Before
0eee77cb 1264const DynamicThreadPool = require('poolifier/lib/dynamic')
fa0f5b28 1265// After
0eee77cb 1266const { DynamicThreadPool } = require('poolifier/lib/dynamic')
fa0f5b28
S
1267```
1268
1269But you should always prefer just using
1270
1271```js
0eee77cb 1272const { DynamicThreadPool } = require('poolifier')
fa0f5b28
S
1273```
1274
d3c8a1a8
S
1275#### New type definitions for input data and response
1276
6677a3d3 1277For cluster worker and worker-thread pools, you can now only send and receive structured-cloneable data.
9606b474 1278_This is not a limitation by poolifier but Node.js._
d3c8a1a8 1279
3a4b605f 1280#### Public property replacements
5c5a1fb7 1281
3a4b605f 1282`numWorkers` property is now `numberOfWorkers`
5c5a1fb7 1283
280c2a77 1284#### Internal (protected) properties and methods renaming
fa0f5b28 1285
280c2a77
S
1286These properties are not intended for end users
1287
1288- `id` => `nextMessageId`
1289
1290These methods are not intended for end users
fa0f5b28
S
1291
1292- `_chooseWorker` => `chooseWorker`
280c2a77 1293- `_newWorker` => `createWorker`
fa0f5b28
S
1294- `_execute` => `internalExecute`
1295- `_chooseWorker` => `chooseWorker`
1296- `_checkAlive` => `checkAlive`
1297- `_run` => `run`
1298- `_runAsync` => `runAsync`
1299
90ee1b18 1300## [1.1.0] - 2020-05-21
0312f71a
APA
1301
1302### Added
1303
1304- ThreadWorker support async functions as option
cf9aa6c3 1305- Various external library patches
0312f71a 1306
90ee1b18 1307## [1.0.0] - 2020-01-24
522eea03 1308
1309### Added
1310
1311- FixedThreadPool implementation
1312- DynamicThreadPool implementation
0312f71a 1313- WorkerThread implementation to improve developer experience