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