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