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