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