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