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