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