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