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