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