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