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