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