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