fix: avoid cascading tasks stealing under back pressure
[poolifier.git] / CHANGELOG.md
1 # Changelog
2
3 All notable changes to this project will be documented in this file.
4
5 The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6 and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
8 ## [Unreleased]
9
10 ### Fixes
11
12 - Avoid cascading tasks stealing under back pressure.
13
14 ### Changed
15
16 - Add fastpath to queued tasks rescheduling.
17
18 ## [2.6.33] - 2023-08-24
19
20 ### Fixed
21
22 - Fix queued tasks rescheduling.
23
24 ### Changed
25
26 - Rename tasks queue options `queueMaxSize` to `size`.
27
28 ### Added
29
30 - Task stealing scheduling algorithm if tasks queueing is enabled.
31
32 ## [2.6.32] - 2023-08-23
33
34 ### Fixed
35
36 - Ensure no task can be executed when the pool is destroyed.
37
38 ### Added
39
40 - Add `queueMaxSize` option to tasks queue options.
41 - Add O(1) deque implementation implemented with doubly linked list and use it for tasks queueing.
42 - Add tasks stealing algorithm when a worker node queue is back pressured if tasks queueing is enabled.
43
44 ## [2.6.31] - 2023-08-20
45
46 ### Fixed
47
48 - Fix worker choice strategy retries mechanism in some edge cases.
49
50 ### Changed
51
52 - Make orthogonal worker choice strategies tasks distribution and created dynamic worker usage.
53 - Remove the experimental status of the `LEAST_ELU` worker choice strategy.
54
55 ## [2.6.30] - 2023-08-19
56
57 ### Fixed
58
59 - Ensure pool event `backPressure` is emitted.
60 - Ensure pool event `full` is emitted only once.
61 - Ensure worker node cannot be instantiated without proper arguments.
62
63 ## [2.6.29] - 2023-08-18
64
65 ### Fixed
66
67 - Fix race condition between ready and task functions worker message handling at startup.
68 - Fix duplicate task function worker usage statistics computation per task function.
69 - Update task function worker usage statistics if and only if there's at least two different task functions.
70 - Fix race condition at task function worker usage executing task computation leading to negative value.
71
72 ### Added
73
74 - Add back pressure detection on the worker node queue. Event `backPressure` is emitted when all worker node queues are full (worker node queue size >= poolMaxSize^2).
75 - Use back pressure detection in worker choice strategies.
76 - Add worker choice strategies retries mechanism if no worker is eligible.
77
78 ## [2.6.28] - 2023-08-16
79
80 ### Fixed
81
82 - Ensure pool workers are properly initialized.
83
84 ### Added
85
86 - HTTP server pool examples: express-cluster, express-hybrid.
87
88 ### Changed
89
90 - Remove now useless branching in worker hot code path.
91
92 ## [2.6.27] - 2023-08-15
93
94 ### Fixed
95
96 - Add `KillHandler` type definition to exported types.
97
98 ### Added
99
100 - Add `destroy` event to pool API.
101
102 ## [2.6.26] - 2023-08-15
103
104 ### Added
105
106 - Add kill handler to worker options allowing to execute custom code when worker is killed.
107 - Add `listTaskFunctions()` method to pool API.
108 - SMTP server pool example: nodemailer.
109
110 ## [2.6.25] - 2023-08-13
111
112 ### Added
113
114 - HTTP server pool examples: fastify-cluster, fastify-hybrid.
115 - WebSocket server pool examples: ws-cluster, ws-hybrid.
116
117 ## [2.6.24] - 2023-08-12
118
119 ### Added
120
121 - Add array of transferable objects to the `execute()` method arguments.
122 - WebSocket server pool examples: ws-worker_threads.
123
124 ## [2.6.23] - 2023-08-11
125
126 ### Fixed
127
128 - Fix pool busyness semantic when tasks queueing is enabled: the pool is busy when the number of executing tasks on each worker has reached the maximum tasks concurrency per worker.
129
130 ### Added
131
132 - HTTP client pool examples: fetch, node-fetch and axios with multiple task functions.
133 - HTTP server pool examples: express-worker_threads, fastify-worker_threads.
134
135 ## [2.6.22] - 2023-08-10
136
137 ### Fixed
138
139 - Add missing `types` field to package.json `exports`.
140
141 ### Changed
142
143 - Structure markdown documentation (PR #811).
144
145 ## [2.6.21] - 2023-08-03
146
147 ### Changed
148
149 - Improve code documentation.
150 - Code refactoring and cleanup for better maintainability and readability.
151
152 ## [2.6.20] - 2023-07-21
153
154 ### Fixed
155
156 - Fix queued tasks redistribution on error task execution starvation.
157 - Ensure tasks queueing per worker condition is untangled from the pool busyness semantic.
158
159 ### Changed
160
161 - Drastically reduce lookups by worker in the worker nodes.
162
163 ## [2.6.19] - 2023-07-20
164
165 ### Added
166
167 - Dedicated internal communication channel for worker_threads pools.
168
169 ## [2.6.18] - 2023-07-19
170
171 ### Changed
172
173 - Code refactoring and cleanup for better maintainability and readability. Bundle size is a bit smaller.
174
175 ## [2.6.17] - 2023-07-16
176
177 ### Added
178
179 - Add `listTaskFunctions()` method to worker API.
180
181 ## [2.6.16] - 2023-07-12
182
183 ### Fixed
184
185 - Fix pool startup detection.
186 - Fix worker task functions handling.
187
188 ## [2.6.15] - 2023-07-11
189
190 ### Added
191
192 - Take into account worker node readiness in worker choice strategies.
193
194 ## [2.6.14] - 2023-07-10
195
196 ### Fixed
197
198 - Fix task function statistics tracking.
199
200 ## [2.6.13] - 2023-07-10
201
202 ### Added
203
204 - Add per task function statistics tracking.
205 - Add public methods to manipulate the worker task functions at runtime.
206
207 ## [2.6.12] - 2023-07-09
208
209 ### Fixed
210
211 - Workaround import issue with `node:os` module in node 16.x.x.
212
213 ## [2.6.11] - 2023-07-09
214
215 ### Fixed
216
217 - Fix pool readiness semantic.
218
219 ## [2.6.10] - 2023-07-08
220
221 ### Fixed
222
223 - Ensure workers are not recreated on error at pool startup.
224
225 ### Added
226
227 - Add `ready` and `strategy` fields to pool information.
228 - Add pool event `ready` to notify when the number of workers created in the pool has reached the maximum size expected and are ready.
229 - Add dynamic pool sizing checks.
230
231 ## [2.6.9] - 2023-07-07
232
233 ### Fixed
234
235 - Recreate the right worker type on uncaught exception.
236
237 ### Added
238
239 - Add minimum and maximum to internal measurement statistics.
240 - Add `runTime` and `waitTime` to pool information.
241 - Check worker inactive time only on dynamic worker.
242
243 ## [2.6.8] - 2023-07-03
244
245 ### Fixed
246
247 - Brown paper bag release to fix version handling in pool information.
248
249 ## [2.6.7] - 2023-07-03
250
251 ### Fixed
252
253 - Ensure worker queued tasks at error are reassigned to other pool workers.
254
255 ### Added
256
257 - Add pool `utilization` ratio to pool information.
258 - Add `version` to pool information.
259 - Add worker information to worker nodes.
260
261 ## [2.6.6] - 2023-07-01
262
263 ### Added
264
265 - Add safe helper `availableParallelism()` to help sizing the pool.
266
267 ### Fixed
268
269 - Ensure message handler is only registered in worker.
270
271 ## [2.6.5] - 2023-06-27
272
273 ### Known issues
274
275 - Cluster pools tasks execution are not working by using ESM files extension: https://github.com/poolifier/poolifier/issues/782
276
277 ### Fixed
278
279 - Artificial version bump to 2.6.5 to workaround publication issue.
280 - Ensure cluster pool `destroy()` gracefully shutdowns worker's server.
281 - Ensure pool event is emitted before task error promise rejection.
282 - Fix queued tasks count computation.
283
284 ### Removed
285
286 - Remove unneeded worker_threads worker `MessageChannel` internal usage for IPC.
287
288 ## [2.6.4] - 2023-06-27
289
290 ### Known issues
291
292 - Cluster pools tasks execution are not working by using ESM files extension: https://github.com/poolifier/poolifier/issues/782
293
294 ### Fixed
295
296 - Ensure cluster pool `destroy()` gracefully shutdowns worker's server.
297 - Ensure pool event is emitted before task error promise rejection.
298 - Fix queued tasks count computation.
299
300 ### Removed
301
302 - Remove unneeded worker_threads worker `MessageChannel` internal usage for IPC.
303
304 ## [2.6.3] - 2023-06-19
305
306 ### Fixed
307
308 - Ensure no tasks are queued when trying to soft kill a dynamic worker.
309 - Update strategies internals after statistics computation.
310
311 ### Changed
312
313 - Optimize O(1) queue implementation.
314
315 ## [2.6.2] - 2023-06-12
316
317 ### Fixed
318
319 - Fix new worker use after creation in dynamic pool given the current worker choice strategy.
320
321 ## [2.6.1] - 2023-06-10
322
323 ### Added
324
325 - Add worker choice strategy documentation: [README.md](./docs/worker-choice-strategies.md).
326
327 ### Fixed
328
329 - Fix average statistics computation: ensure failed tasks are not accounted.
330
331 ## [2.6.0] - 2023-06-09
332
333 ### Added
334
335 - Add `LEAST_ELU` worker choice strategy (experimental).
336 - Add tasks ELU instead of runtime support to `FAIR_SHARE` worker choice strategy.
337
338 ### Changed
339
340 - Refactor pool worker node usage internals.
341 - Breaking change: refactor worker choice strategy statistics requirements: the syntax of the worker choice strategy options has changed.
342 - Breaking change: pool information `info` property object fields have been renamed.
343
344 ### Fixed
345
346 - Fix wait time accounting.
347 - Ensure worker choice strategy `LEAST_BUSY` accounts also tasks wait time.
348 - Ensure worker choice strategy `LEAST_USED` accounts also queued tasks.
349
350 ## [2.5.4] - 2023-06-07
351
352 ### Added
353
354 - Add Event Loop Utilization (ELU) statistics to worker tasks usage.
355
356 ### Changed
357
358 - Compute statistics at the worker level only if needed.
359 - Add `worker_threads` options to thread pool options.
360
361 ### Fixed
362
363 - Make the `LEAST_BUSY` strategy only relies on task runtime.
364
365 ## [2.5.3] - 2023-06-04
366
367 ### Changed
368
369 - Refine pool information content.
370 - Limit pool internals public exposure.
371
372 ## [2.5.2] - 2023-06-02
373
374 ### Added
375
376 - Add `taskError` pool event for task execution error.
377 - Add pool information `info` property to pool.
378 - Emit pool information on `busy` and `full` pool events.
379
380 ## [2.5.1] - 2023-06-01
381
382 ### Added
383
384 - Add pool option `restartWorkerOnError` to restart worker on uncaught error. Default to `true`.
385 - Add `error` pool event for uncaught worker error.
386
387 ## [2.5.0] - 2023-05-31
388
389 ### Added
390
391 - Switch pool event emitter to `EventEmitterAsyncResource`.
392 - Add tasks wait time accounting in per worker tasks usage.
393 - Add interleaved weighted round robin `INTERLEAVED_WEIGHTED_ROUND_ROBIN` worker choice strategy (experimental).
394
395 ### Changed
396
397 - Renamed worker choice strategy `LESS_BUSY` to `LEAST_BUSY` and `LESS_USED` to `LEAST_USED`.
398
399 ## [2.4.14] - 2023-05-09
400
401 ### Fixed
402
403 - Ensure no undefined task runtime can land in the tasks history.
404 - Fix median computation implementation once again.
405
406 ### Added
407
408 - Unit tests for median and queue implementations.
409
410 ## [2.4.13] - 2023-05-08
411
412 ### Fixed
413
414 - Fix worker choice strategy options validation.
415 - Fix fair share worker choice strategy internals update: ensure virtual task end timestamp is computed at task submission.
416
417 ## [2.4.12] - 2023-05-06
418
419 ### Added
420
421 - Support multiple task functions per worker.
422 - Add custom worker weights support to worker choice strategies options.
423
424 ### Changed
425
426 - Use O(1) queue implementation for tasks queueing.
427
428 ### Fixed
429
430 - Fix median computation implementation.
431 - Fix fair share worker choice strategy internals update.
432
433 ## [2.4.11] - 2023-04-23
434
435 ### Changed
436
437 - Optimize free worker finding in worker choice strategies.
438
439 ## [2.4.10] - 2023-04-15
440
441 ### Fixed
442
443 - Fix typescript type definition for task function: ensure the input data is optional.
444 - Fix typescript type definition for pool execute(): ensure the input data is optional.
445
446 ## [2.4.9] - 2023-04-15
447
448 ### Added
449
450 - Add tasks queue enablement runtime setter to pool.
451 - Add tasks queue options runtime setter to pool.
452 - Add worker choice strategy options runtime setter to pool.
453
454 ### Changed
455
456 - Remove the tasks queuing experimental status.
457
458 ### Fixed
459
460 - Fix task function type definition and validation.
461 - Fix worker choice strategy options handling.
462
463 ## [2.4.8] - 2023-04-12
464
465 ### Fixed
466
467 - Fix message between main worker and worker type definition for tasks.
468 - Fix code documentation.
469
470 ## [2.4.7] - 2023-04-11
471
472 ### Added
473
474 - Add worker tasks queue options to pool options.
475
476 ### Fixed
477
478 - Fix missing documentation.
479
480 ## [2.4.6] - 2023-04-10
481
482 ### Fixed
483
484 - Ensure one task at a time is executed per worker with tasks queueing enabled.
485 - Properly count worker executing tasks with tasks queueing enabled.
486
487 ## [2.4.5] - 2023-04-09
488
489 ### Added
490
491 - Use monotonic high resolution timer for worker tasks runtime.
492 - Add worker tasks median runtime to statistics.
493 - Add worker tasks queue (experimental).
494
495 ## [2.4.4] - 2023-04-07
496
497 ### Added
498
499 - Add `PoolEvents` enumeration and `PoolEvent` type.
500
501 ### Fixed
502
503 - Destroy worker only on alive check.
504
505 ## [2.4.3] - 2023-04-07
506
507 ### Fixed
508
509 - Fix typedoc generation with inheritance.
510
511 ## [2.4.2] - 2023-04-06
512
513 ### Added
514
515 - Add `full` event to dynamic pool.
516 - Keep worker choice strategy in memory for conditional reuse.
517
518 ### Fixed
519
520 - Fix possible negative worker key at worker removal in worker choice strategies.
521
522 ## [2.4.1] - 2023-04-05
523
524 ### Changed
525
526 - Optimize worker choice strategy for dynamic pool.
527
528 ### Fixed
529
530 - Ensure dynamic pool does not alter worker choice strategy expected behavior.
531
532 ## [2.4.0] - 2023-04-04
533
534 ### Added
535
536 - Add `LESS_BUSY` worker choice strategy.
537
538 ### Changed
539
540 - Optimize worker storage in pool.
541 - Optimize worker alive status check.
542 - BREAKING CHANGE: Rename worker choice strategy `LESS_RECENTLY_USED` to `LESS_USED`.
543 - Optimize `LESS_USED` worker choice strategy.
544 - Update benchmarks versus external threads pools.
545 - Optimize tasks usage statistics requirements for worker choice strategy.
546
547 ### Fixed
548
549 - Ensure trimmable characters are checked at pool initialization.
550 - Fix message id integer overflow.
551 - Fix pool worker removal in worker choice strategy internals.
552 - Fix package publication with pnpm.
553
554 ## [2.4.0-3] - 2023-04-04
555
556 ### Added
557
558 - Add `LESS_BUSY` worker choice strategy.
559
560 ### Changed
561
562 - Optimize worker storage in pool.
563 - Optimize worker alive status check.
564 - BREAKING CHANGE: Rename worker choice strategy `LESS_RECENTLY_USED` to `LESS_USED`.
565 - Optimize `LESS_USED` worker choice strategy.
566 - Update benchmarks versus external threads pools.
567
568 ### Fixed
569
570 - Ensure trimmable characters are checked at pool initialization.
571 - Fix message id integer overflow.
572 - Fix pool worker removal in worker choice strategy internals.
573 - Fix package publication with pnpm.
574
575 ## [2.4.0-2] - 2023-04-03
576
577 ### Added
578
579 - Add `LESS_BUSY` worker choice strategy.
580
581 ### Changed
582
583 - Optimize worker storage in pool.
584 - Optimize worker alive status check.
585 - BREAKING CHANGE: Rename worker choice strategy `LESS_RECENTLY_USED` to `LESS_USED`.
586 - Optimize `LESS_USED` worker choice strategy.
587
588 ### Fixed
589
590 - Ensure trimmable characters are checked at pool initialization.
591 - Fix message id integer overflow.
592 - Fix pool worker removal in worker choice strategy internals.
593 - Fix package publication with pnpm.
594
595 ## [2.4.0-1] - 2023-04-03
596
597 ### Added
598
599 - Add `LESS_BUSY` worker choice strategy.
600
601 ### Changed
602
603 - Optimize worker storage in pool.
604 - Optimize worker alive status check.
605 - BREAKING CHANGE: Rename worker choice strategy `LESS_RECENTLY_USED` to `LESS_USED`.
606 - Optimize `LESS_USED` worker choice strategy.
607
608 ### Fixed
609
610 - Ensure trimmable characters are checked at pool initialization.
611 - Fix message id integer overflow.
612 - Fix pool worker removal in worker choice strategy internals.
613
614 ## [2.4.0-0] - 2023-04-03
615
616 ### Added
617
618 - Add `LESS_BUSY` worker choice strategy.
619
620 ### Changed
621
622 - Optimize worker storage in pool.
623 - Optimize worker alive status check.
624 - BREAKING CHANGE: Rename worker choice strategy `LESS_RECENTLY_USED` to `LESS_USED`.
625 - Optimize `LESS_USED` worker choice strategy.
626
627 ### Fixed
628
629 - Ensure trimmable characters are checked at pool initialization.
630 - Fix message id integer overflow.
631 - Fix pool worker removal in worker choice strategy internals.
632
633 ## [2.3.10] - 2023-03-18
634
635 ### Fixed
636
637 - Fix package.json `exports` syntax for ESM and CommonJS.
638
639 ### Changed
640
641 - Permit SemVer pre-release publication.
642
643 ## [2.3.10-2] - 2023-03-18
644
645 ### Fixed
646
647 - Fix package.json `exports` syntax for ESM and CommonJS.
648
649 ## [2.3.10-1] - 2023-03-18
650
651 ### Changed
652
653 - Permit SemVer pre-release publication.
654
655 ## [2.3.10-0] - 2023-03-18
656
657 ### Fixed
658
659 - Fix package.json `exports` syntax for ESM and CommonJS.
660
661 ## [2.3.9] - 2023-03-18
662
663 ### Changed
664
665 - Introduce ESM module support along with CommonJS one.
666
667 ### Fixed
668
669 - Fix brown paper bag bug referencing the same object literal.
670
671 ## [2.3.8] - 2023-03-18
672
673 ### Changed
674
675 - Switch internal benchmarking code to benny.
676 - Switch to TypeScript 5.x.x.
677 - Switch rollup bundler plugins to core ones.
678 - Switch to TSDoc syntax.
679 - Enforce conventional commits.
680
681 ### Fixed
682
683 - Fix random integer generator.
684 - Fix worker choice strategy pool type identification at initialization.
685
686 ## [2.3.7] - 2022-10-23
687
688 ### Changed
689
690 - Switch to open collective FOSS project funding platform.
691 - Switch to ts-standard linter configuration on TypeScript code.
692
693 ### Fixed
694
695 - Fixed missing async on pool execute method.
696 - Fixed typing in TypeScript example.
697 - Fixed types in unit tests.
698
699 ## [2.3.6] - 2022-10-22
700
701 ### Changed
702
703 - Cleanup pool attributes and methods.
704 - Refine error types thrown.
705
706 ### Fixed
707
708 - Fix continuous integration build on windows.
709 - Fix code coverage reporting by using c8 instead of nyc.
710
711 ## [2.3.5] - 2022-10-21
712
713 ### Changed
714
715 - Improve benchmarks: add IO intensive task workload, add task size option, integrate code into linter.
716 - Optimize tasks usage lookup implementation.
717
718 ### Fixed
719
720 - Fix missed pool event emitter type export.
721 - Fix typedoc documentation generation.
722
723 ## [2.3.4] - 2022-10-17
724
725 ### Added
726
727 - Fully automate release process with release-it.
728
729 ### Changed
730
731 - Optimize fair share task scheduling algorithm implementation.
732 - Update benchmarks versus external pools results with latest version.
733
734 ## [2.3.3] - 2022-10-15
735
736 ### Added
737
738 - Add support for [cluster settings](https://nodejs.org/api/cluster.html#cluster_cluster_settings) in cluster pool options.
739
740 ## [2.3.2] - 2022-10-14
741
742 ### Changed
743
744 - Optimize fair share worker selection strategy implementation.
745
746 ### Fixed
747
748 - Fix WRR worker selection strategy: ensure the condition triggering the round robin can be fulfilled.
749
750 ## [2.3.1] - 2022-10-13
751
752 ### Added
753
754 - Pool worker choice strategies:
755 - `WorkerChoiceStrategies.WEIGHTED_ROUND_ROBIN` strategy based on weighted round robin scheduling algorithm using tasks execution time for now.
756 - `WorkerChoiceStrategies.FAIR_SHARE` strategy based on fair share scheduling algorithm using tasks execution time for now.
757
758 ## [2.2.2] - 2022-10-09
759
760 ### Fixed
761
762 - Fixed `README.md` file.
763
764 ## [2.2.1] - 2022-10-08
765
766 ### Added
767
768 - Dynamic worker choice strategy change at runtime.
769
770 ## [2.2.0] - 2022-01-05
771
772 ### Breaking Changes
773
774 - Support only Node.js version 16.x.x for cluster pool: upstream cluster API have changed on that version.
775
776 ## [2.1.0] - 2021-08-29
777
778 ### Added
779
780 - Add an optional pool option `messageHandler` to `PoolOptions<Worker>` for registering a message handler callback on each worker.
781
782 ### Breaking Changes
783
784 - `AbstractWorker` class `maxInactiveTime`, `killBehavior` and `async` attributes have been removed in favour of the same ones in the worker options `opts` public attribute.
785 - `AbstractWorker` class `lastTask` attribute have been renamed to `lastTaskTimestamp`.
786 - `AbstractWorker` class `interval` attribute have been renamed to `aliveInterval`.
787 - `AbstractWorker` class cannot be instantiated without specifying the `mainWorker` argument referencing the main worker.
788
789 ## [2.0.2] - 2021-05-12
790
791 ### Bug fixes
792
793 - Fix `busy` event emission on fixed pool type
794
795 ## [2.0.1] - 2021-03-16
796
797 ### Bug fixes
798
799 - Check if pool options are properly set.
800 - `busy` event is emitted on all pool types.
801
802 ## [2.0.0] - 2021-03-01
803
804 ### Bug fixes
805
806 - Now a thread/process by default is not deleted when the task submitted take more time than maxInactiveTime configured (issue #70).
807
808 ### Breaking Changes
809
810 - `FullPool` event is now renamed to `busy`.
811 - `maxInactiveTime` on `ThreadWorker` default behavior is now changed, if you want to keep the old behavior set `killBehavior` to `KillBehaviors.HARD`.
812 _Find more details on our JSDoc._
813
814 - `maxTasks` option on `FixedThreadPool` and `DynamicThreadPool` is now removed since is no more needed.
815
816 - We changed some internal structures, but you shouldn't be too affected by them as these are internal changes.
817
818 ### Pool options types declaration merge
819
820 `FixedThreadPoolOptions` and `DynamicThreadPoolOptions` type declarations have been merged to `PoolOptions<Worker>`.
821
822 #### New `export` strategy
823
824 ```js
825 // Before
826 const DynamicThreadPool = require('poolifier/lib/dynamic')
827 // After
828 const { DynamicThreadPool } = require('poolifier/lib/dynamic')
829 ```
830
831 But you should always prefer just using
832
833 ```js
834 const { DynamicThreadPool } = require('poolifier')
835 ```
836
837 #### New type definitions for input data and response
838
839 For cluster worker and worker-thread pools, you can now only send and receive structured-cloneable data.
840 _This is not a limitation by poolifier but Node.js._
841
842 #### Public property replacements
843
844 `numWorkers` property is now `numberOfWorkers`
845
846 #### Internal (protected) properties and methods renaming
847
848 These properties are not intended for end users
849
850 - `id` => `nextMessageId`
851
852 These methods are not intended for end users
853
854 - `_chooseWorker` => `chooseWorker`
855 - `_newWorker` => `createWorker`
856 - `_execute` => `internalExecute`
857 - `_chooseWorker` => `chooseWorker`
858 - `_checkAlive` => `checkAlive`
859 - `_run` => `run`
860 - `_runAsync` => `runAsync`
861
862 ## [1.1.0] - 2020-05-21
863
864 ### Added
865
866 - ThreadWorker support async functions as option
867 - Various external library patches
868
869 ## [1.0.0] - 2020-01-24
870
871 ### Added
872
873 - FixedThreadPool implementation
874 - DynamicThreadPool implementation
875 - WorkerThread implementation to improve developer experience