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