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