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