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