Merge branch 'master' of github.com:poolifier/poolifier
[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 message handler is only registered in worker.
13
14## [2.6.5] - 2023-06-27
15
16### Known issues
17
18- Cluster pools tasks execution are not working: https://github.com/poolifier/poolifier/issues/782
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
31## [2.6.4] - 2023-06-27
32
33### Known issues
34
35- Cluster pools tasks execution are not working: https://github.com/poolifier/poolifier/issues/782
36
37### Fixed
38
39- Ensure cluster pool destroy() gracefully shutdowns worker's server.
40- Ensure pool event is emitted before task error promise rejection.
41- Fix queued tasks count computation.
42
43### Removed
44
45- Remove unneeded worker-threads worker `MessageChannel` internal usage for IPC.
46
47## [2.6.3] - 2023-06-19
48
49### Fixed
50
51- Ensure no tasks are queued when trying to soft kill a dynamic worker.
52- Update strategies internals after statistics computation.
53
54### Changed
55
56- Optimize O(1) queue implementation.
57
58## [2.6.2] - 2023-06-12
59
60### Fixed
61
62- Fix new worker use after creation in dynamic pool given the current worker choice strategy.
63
64## [2.6.1] - 2023-06-10
65
66### Added
67
68- Add worker choice strategy documentation: [README.md](./src/pools/selection-strategies/README.md).
69
70### Fixed
71
72- Fix average statistics computation: ensure failed tasks are not accounted.
73
74## [2.6.0] - 2023-06-09
75
76### Added
77
78- Add `LEAST_ELU` worker choice strategy (experimental).
79- Add tasks ELU instead of runtime support to `FAIR_SHARE` worker choice strategy.
80
81### Changed
82
83- Refactor pool worker node usage internals.
84- Breaking change: refactor worker choice strategy statistics requirements: the syntax of the worker choice strategy options has changed.
85- Breaking change: pool information `info` property object fields have been renamed.
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
93## [2.5.4] - 2023-06-07
94
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.
102- Add `worker-threads` options to thread pool options.
103
104### Fixed
105
106- Make the `LEAST_BUSY` strategy only relies on task runtime.
107
108## [2.5.3] - 2023-06-04
109
110### Changed
111
112- Refine pool information content.
113- Limit pool internals public exposure.
114
115## [2.5.2] - 2023-06-02
116
117### Added
118
119- Add `taskError` pool event for task execution error.
120- Add pool information `info` property to pool.
121- Emit pool information on `busy` and `full` pool events.
122
123## [2.5.1] - 2023-06-01
124
125### Added
126
127- Add pool option `restartWorkerOnError` to restart worker on uncaught error. Default to `true`.
128- Add `error` pool event for uncaught worker error.
129
130## [2.5.0] - 2023-05-31
131
132### Added
133
134- Switch pool event emitter to `EventEmitterAsyncResource`.
135- Add tasks wait time accounting in per worker tasks usage.
136- Add interleaved weighted round robin `INTERLEAVED_WEIGHTED_ROUND_ROBIN` worker choice strategy (experimental).
137
138### Changed
139
140- Renamed worker choice strategy `LESS_BUSY` to `LEAST_BUSY` and `LESS_USED` to `LEAST_USED`.
141
142## [2.4.14] - 2023-05-09
143
144### Fixed
145
146- Ensure no undefined task runtime can land in the tasks history.
147- Fix median computation implementation once again.
148
149### Added
150
151- Unit tests for median and queue implementations.
152
153## [2.4.13] - 2023-05-08
154
155### Fixed
156
157- Fix worker choice strategy options validation.
158- Fix fair share worker choice strategy internals update: ensure virtual task end timestamp is computed at task submission.
159
160## [2.4.12] - 2023-05-06
161
162### Added
163
164- Support multiple task functions per worker.
165- Add custom worker weights support to worker choice strategies options.
166
167### Changed
168
169- Use O(1) queue implementation for tasks queueing.
170
171### Fixed
172
173- Fix median computation implementation.
174- Fix fair share worker choice strategy internals update.
175
176## [2.4.11] - 2023-04-23
177
178### Changed
179
180- Optimize free worker finding in worker choice strategies.
181
182## [2.4.10] - 2023-04-15
183
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
189## [2.4.9] - 2023-04-15
190
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
201### Fixed
202
203- Fix worker function type definition and validation.
204- Fix worker choice strategy options handling.
205
206## [2.4.8] - 2023-04-12
207
208### Fixed
209
210- Fix message between main worker and worker type definition for tasks.
211- Fix code documentation.
212
213## [2.4.7] - 2023-04-11
214
215### Added
216
217- Add worker tasks queue options to pool options.
218
219### Fixed
220
221- Fix missing documentation.
222
223## [2.4.6] - 2023-04-10
224
225### Fixed
226
227- Ensure one task at a time is executed per worker with tasks queueing enabled.
228- Properly count worker executing tasks with tasks queueing enabled.
229
230## [2.4.5] - 2023-04-09
231
232### Added
233
234- Use monotonic high resolution timer for worker tasks runtime.
235- Add worker tasks median runtime to statistics.
236- Add worker tasks queue (experimental).
237
238## [2.4.4] - 2023-04-07
239
240### Added
241
242- Add `PoolEvents` enumeration and `PoolEvent` type.
243
244### Fixed
245
246- Destroy worker only on alive check.
247
248## [2.4.3] - 2023-04-07
249
250### Fixed
251
252- Fix typedoc generation with inheritance.
253
254## [2.4.2] - 2023-04-06
255
256### Added
257
258- Add `full` event to dynamic pool.
259- Keep worker choice strategy in memory for conditional reuse.
260
261### Fixed
262
263- Fix possible negative worker key at worker removal in worker choice strategies.
264
265## [2.4.1] - 2023-04-05
266
267### Changed
268
269- Optimize worker choice strategy for dynamic pool.
270
271### Fixed
272
273- Ensure dynamic pool does not alter worker choice strategy expected behavior.
274
275## [2.4.0] - 2023-04-04
276
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
297## [2.4.0-3] - 2023-04-04
298
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
318## [2.4.0-2] - 2023-04-03
319
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
338## [2.4.0-1] - 2023-04-03
339
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
357## [2.4.0-0] - 2023-04-03
358
359### Added
360
361- Add `LESS_BUSY` worker choice strategy.
362
363### Changed
364
365- Optimize worker storage in pool.
366- Optimize worker alive status check.
367- BREAKING CHANGE: Rename worker choice strategy `LESS_RECENTLY_USED` to `LESS_USED`.
368- Optimize `LESS_USED` worker choice strategy.
369
370### Fixed
371
372- Ensure trimmable characters are checked at pool initialization.
373- Fix message id integer overflow.
374- Fix pool worker removal in worker choice strategy internals.
375
376## [2.3.10] - 2023-03-18
377
378### Fixed
379
380- Fix `exports` syntax for ESM and CommonJS.
381
382### Changed
383
384- Permit SemVer pre-release publication.
385
386## [2.3.10-2] - 2023-03-18
387
388### Fixed
389
390- Fix `exports` syntax for ESM and CommonJS.
391
392## [2.3.10-1] - 2023-03-18
393
394### Changed
395
396- Permit SemVer pre-release publication.
397
398## [2.3.10-0] - 2023-03-18
399
400### Fixed
401
402- Fix `exports` syntax for ESM and CommonJS.
403
404## [2.3.9] - 2023-03-18
405
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
414## [2.3.8] - 2023-03-18
415
416### Changed
417
418- Switch internal benchmarking code to benny.
419- Switch to TypeScript 5.x.x.
420- Switch rollup bundler plugins to core ones.
421- Switch to TSDoc syntax.
422- Enforce conventional commits.
423
424### Fixed
425
426- Fix random integer generator.
427- Fix worker choice strategy pool type identification at initialization.
428
429## [2.3.7] - 2022-10-23
430
431### Changed
432
433- Switch to open collective FOSS project funding platform.
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.
441
442## [2.3.6] - 2022-10-22
443
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
454## [2.3.5] - 2022-10-21
455
456### Changed
457
458- Improve benchmarks: add IO intensive task workload, add task size option, integrate code into linter.
459- Optimize tasks usage lookup implementation.
460
461### Fixed
462
463- Fix missed pool event emitter type export.
464- Fix typedoc documentation generation.
465
466## [2.3.4] - 2022-10-17
467
468### Added
469
470- Fully automate release process with release-it.
471
472### Changed
473
474- Optimize fair share task scheduling algorithm implementation.
475- Update benchmarks versus external pools results with latest version.
476
477## [2.3.3] - 2022-10-15
478
479### Added
480
481- Add support for [cluster settings](https://nodejs.org/api/cluster.html#cluster_cluster_settings) in cluster pool options.
482
483## [2.3.2] - 2022-10-14
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
493## [2.3.1] - 2022-10-13
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
501## [2.2.2] - 2022-10-09
502
503### Fixed
504
505- Fixed `README.md` file.
506
507## [2.2.1] - 2022-10-08
508
509### Added
510
511- Dynamic worker choice strategy change at runtime.
512
513## [2.2.0] - 2022-01-05
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
519## [2.1.0] - 2021-08-29
520
521### Added
522
523- Add an optional pool option `messageHandler` to `PoolOptions<Worker>` for registering a message handler callback on each worker.
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`.
530- `AbstractWorker` class cannot be instantiated without specifying the `mainWorker` argument referencing the main worker.
531
532## [2.0.2] - 2021-05-12
533
534### Bug fixes
535
536- Fix `busy` event emission on fixed pool type
537
538## [2.0.1] - 2021-03-16
539
540### Bug fixes
541
542- Check if pool options are properly set.
543- `busy` event is emitted on all pool types.
544
545## [2.0.0] - 2021-03-01
546
547### Bug fixes
548
549- Now a thread/process by default is not deleted when the task submitted take more time than maxInactiveTime configured (issue #70).
550
551### Breaking Changes
552
553- `FullPool` event is now renamed to `busy`.
554- `maxInactiveTime` on `ThreadWorker` default behavior is now changed, if you want to keep the old behavior set `killBehavior` to `KillBehaviors.HARD`.
555 _Find more details on our JSDoc._
556
557- `maxTasks` option on `FixedThreadPool` and `DynamicThreadPool` is now removed since is no more needed.
558
559- We changed some internal structures, but you shouldn't be too affected by them as these are internal changes.
560
561### Pool options types declaration merge
562
563`FixedThreadPoolOptions` and `DynamicThreadPoolOptions` type declarations have been merged to `PoolOptions<Worker>`.
564
565#### New `export` strategy
566
567```js
568// Before
569const DynamicThreadPool = require('poolifier/lib/dynamic')
570// After
571const { DynamicThreadPool } = require('poolifier/lib/dynamic')
572```
573
574But you should always prefer just using
575
576```js
577const { DynamicThreadPool } = require('poolifier')
578```
579
580#### New type definitions for input data and response
581
582For cluster worker and worker-thread pools, you can now only send and receive structured-cloneable data.
583_This is not a limitation by poolifier but NodeJS._
584
585#### Public property replacements
586
587`numWorkers` property is now `numberOfWorkers`
588
589#### Internal (protected) properties and methods renaming
590
591These properties are not intended for end users
592
593- `id` => `nextMessageId`
594
595These methods are not intended for end users
596
597- `_chooseWorker` => `chooseWorker`
598- `_newWorker` => `createWorker`
599- `_execute` => `internalExecute`
600- `_chooseWorker` => `chooseWorker`
601- `_checkAlive` => `checkAlive`
602- `_run` => `run`
603- `_runAsync` => `runAsync`
604
605## [1.1.0] - 2020-05-21
606
607### Added
608
609- ThreadWorker support async functions as option
610- Various external library patches
611
612## [1.0.0] - 2020-01-24
613
614### Added
615
616- FixedThreadPool implementation
617- DynamicThreadPool implementation
618- WorkerThread implementation to improve developer experience