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