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