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