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