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