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