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