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