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