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