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