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