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