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