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