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