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