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