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