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