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