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