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