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