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