Fix coverage link
[poolifier.git] / README.md
CommitLineData
987e0026 1# Node Thread Pool :arrow_double_up: :on:
50aa7901 2
34a572eb 3[![JavaScript Style Guide](https://img.shields.io/badge/code_style-standard-brightgreen.svg)](https://standardjs.com)
103df814 4[![Dependabot](https://badgen.net/dependabot/dependabot/dependabot-core/?icon=dependabot)](https://badgen.net/dependabot/dependabot/dependabot-core/?icon=dependabot)
58a76e22 5[![npm w](https://img.shields.io/npm/dw/poolifier)](https://www.npmjs.com/package/poolifier)
e7752b74 6[![Actions Status](https://github.com/pioardi/node-pool/workflows/NodeCI/badge.svg)](https://github.com/pioardi/node-pool/actions)
ddaa3a76 7[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=pioardi_poolifier&metric=alert_status)](https://sonarcloud.io/dashboard?id=pioardi_poolifier)
7e04d52e 8 [![SonarCloud Coverage](https://sonarcloud.io/api/project_badges/measure?project=pioardi_poolifier&metric=coverage)](https://sonarcloud.io/component_measures/metric/coverage/list?id=pioardi_poolifier)
50aa7901
S
9[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](http://makeapullrequest.com)
10[![NODEP](https://img.shields.io/static/v1?label=dependencies&message=no%20dependencies&color=brightgreen)](https://img.shields.io/static/v1?label=dependencies&message=no%20dependencies&color=brightgreen)
6ba2673b 11[![Gitter](https://badges.gitter.im/poolifier/community.svg)](https://gitter.im/poolifier/community?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
b4b2dc8b 12
ddaa3a76 13<div align="left">
14<img src="./docs/logo.png" width="400" height="475"/>
15</div>
16
50aa7901 17## Why Poolifier?
e76f5485 18
50aa7901
S
19Poolifier is used to perform heavy CPU bound tasks on nodejs servers, it implements thread pools (yes, more thread pool implementations, so you can choose which one fit better for you) using [worker-threads](https://nodejs.org/api/worker_threads.html#worker_threads_worker_threads).
20With poolifier you can improve your **performance** and resolve problems related to the event loop.
21Moreover you can execute your CPU tasks using an API designed to improve the **developer experience**.
e76f5485 22
ddaa3a76 23- Performance :racehorse:
24- Security :bank: :cop: [![Security Rating](https://sonarcloud.io/api/project_badges/measure?project=pioardi_poolifier&metric=security_rating)](https://sonarcloud.io/dashboard?id=pioardi_poolifier)[![Vulnerabilities](https://sonarcloud.io/api/project_badges/measure?project=pioardi_poolifier&metric=vulnerabilities)](https://sonarcloud.io/dashboard?id=pioardi_poolifier)
25
26- No runtime dependencies :white_check_mark: (until now we don't have any exception to that)
27- Easy to use :couple:
28- Code quality :octocat: [![Bugs](https://sonarcloud.io/api/project_badges/measure?project=pioardi_poolifier&metric=bugs)](https://sonarcloud.io/dashboard?id=pioardi_poolifier)
29[![Code Smells](https://sonarcloud.io/api/project_badges/measure?project=pioardi_poolifier&metric=code_smells)](https://sonarcloud.io/dashboard?id=pioardi_poolifier)
30[![Duplicated Lines (%)](https://sonarcloud.io/api/project_badges/measure?project=pioardi_poolifier&metric=duplicated_lines_density)](https://sonarcloud.io/dashboard?id=pioardi_poolifier)
31[![Maintainability Rating](https://sonarcloud.io/api/project_badges/measure?project=pioardi_poolifier&metric=sqale_rating)](https://sonarcloud.io/dashboard?id=pioardi_poolifier)
32[![Reliability Rating](https://sonarcloud.io/api/project_badges/measure?project=pioardi_poolifier&metric=reliability_rating)](https://sonarcloud.io/dashboard?id=pioardi_poolifier)
33[![Technical Debt](https://sonarcloud.io/api/project_badges/measure?project=pioardi_poolifier&metric=sqale_index)](https://sonarcloud.io/dashboard?id=pioardi_poolifier)
e628498e 34- Easy switch from a pool to another, easy to tune
ddaa3a76 35- Dynamic pool size
36- Proper async integration with node async hooks
37- Support for worker threads and cluster node modules
38- Active community
39- Support sync and async tasks
40- General guidance on pools to use
41- Widely tested
42- Error handling out of the box
43
50aa7901 44## Contents
e76f5485 45
34a572eb 46<h3 align="center">
50aa7901
S
47 <a href="#overview">Overview</a>
48 <span> · </span>
34a572eb 49 <a href="#installation">Installation</a>
50 <span> · </span>
51 <a href="#usage">Usage</a>
52 <span> · </span>
50aa7901
S
53 <a href="#node-versions"> Node versions</a>
54 <span> · </span>
34a572eb 55 <a href="#api">API</a>
56 <span> · </span>
50aa7901 57 <a href="#choose-your-pool">Choose your pool</a>
48211d04 58 <span> · </span>
34a572eb 59 <a href="#contribute">Contribute</a>
60 <span> · </span>
50aa7901 61 <a href="#team">Team</a>
34a572eb 62 <span> · </span>
63 <a href="#license">License</a>
64</h3>
65
50aa7901 66## Overview
13031992 67
50aa7901
S
68Node pool contains two [worker-threads](https://nodejs.org/api/worker_threads.html#worker_threads_worker_threads) pool implementations, you don't have to deal with worker-threads complexity.
69The first implementation is a static thread pool, with a defined number of threads that are started at creation time and will be reused.
70The second implementation is a dynamic thread pool with a number of threads started at creation time (these threads will be always active and reused) and other threads created when the load will increase (with an upper limit, these threads will be reused when active), the new created threads will be stopped after a configurable period of inactivity.
71You have to implement your worker extending the ThreadWorker class
72
73## Installation
74
75```shell
27c5fb75 76npm install poolifier --save
1a4ec243 77```
1a4ec243 78
50aa7901
S
79## Usage
80
81You can implement a worker in a simple way, extending the class ThreadWorker:
1a4ec243
APA
82
83```js
84'use strict'
d2eb4964 85const { ThreadWorker } = require('poolifier')
1a4ec243 86
106744f7 87function yourFunction (data) {
88 // this will be executed in the worker thread,
89 // the data will be received by using the execute method
90 return { ok: 1 }
91}
92
50aa7901
S
93module.exports = new ThreadWorker(yourFunction, {
94 maxInactiveTime: 60000,
95 async: false
96})
1a4ec243
APA
97```
98
1f9a5a44 99Instantiate your pool based on your needed :
1a4ec243
APA
100
101```js
102'use strict'
d2eb4964 103const { FixedThreadPool, DynamicThreadPool } = require('poolifier')
1a4ec243
APA
104
105// a fixed thread pool
106const pool = new FixedThreadPool(15,
106744f7 107 './yourWorker.js',
108 { errorHandler: (e) => console.error(e), onlineHandler: () => console.log('worker is online') })
1a4ec243
APA
109
110// or a dynamic thread pool
111const pool = new DynamicThreadPool(10, 100,
106744f7 112 './yourWorker.js',
113 { errorHandler: (e) => console.error(e), onlineHandler: () => console.log('worker is online') })
114
1a4ec243
APA
115pool.emitter.on('FullPool', () => console.log('Pool is full'))
116
117// the execute method signature is the same for both implementations,
118// so you can easy switch from one to another
119pool.execute({}).then(res => {
120 console.log(res)
777b7824 121}).catch ....
1a4ec243
APA
122
123```
124
50aa7901
S
125**See examples folder for more details (in particular if you want to use a pool for [multiple functions](./examples/multiFunctionExample.js)).**
126**Now type script is also supported, find how to use it into the example folder**
1a4ec243 127
50aa7901 128## Node versions
34a572eb 129
50aa7901 130You can use node versions 12.x, 13.x, 14.x
1a4ec243 131
50aa7901 132## API
34a572eb 133
134### `pool = new FixedThreadPool(numThreads, filePath, opts)`
50aa7901
S
135
136`numThreads` (mandatory) Num of threads for this worker pool
137`filePath` (mandatory) Path to a file with a worker implementation
34a572eb 138`opts` (optional) An object with these properties :
50aa7901 139
34a572eb 140- `errorHandler` - A function that will listen for error event on each worker thread
141- `onlineHandler` - A function that will listen for online event on each worker thread
142- `exitHandler` - A function that will listen for exit event on each worker thread
50aa7901 143- `maxTasks` - This is just to avoid not useful warnings message, is used to set [maxListeners](https://nodejs.org/dist/latest-v12.x/docs/api/events.html#events_emitter_setmaxlisteners_n) on event emitters (workers are event emitters)
34a572eb 144
145### `pool = new DynamicThreadPool(min, max, filePath, opts)`
50aa7901
S
146
147`min` (mandatory) Same as FixedThreadPool numThreads, this number of threads will be always active
148`max` (mandatory) Max number of workers that this pool can contain, the new created threads will die after a threshold (default is 1 minute, you can override it in your worker implementation).
149`filePath` (mandatory) Same as FixedThreadPool
150`opts` (optional) Same as FixedThreadPool
34a572eb 151
152### `pool.execute(data)`
50aa7901
S
153
154Execute method is available on both pool implementations (return type : Promise):
155`data` (mandatory) An object that you want to pass to your worker implementation
34a572eb 156
157### `pool.destroy()`
34a572eb 158
50aa7901
S
159Destroy method is available on both pool implementations.
160This method will call the terminate method on each worker.
34a572eb 161
162### `class YourWorker extends ThreadWorker`
50aa7901
S
163
164`fn` (mandatory) The function that you want to execute on the worker thread
165`opts` (optional) An object with these properties:
166
34a572eb 167- `maxInactiveTime` - Max time to wait tasks to work on ( in ms) , after this period the new worker threads will die.
50aa7901
S
168- `async` - true/false, true if your function contains async pieces else false
169
170## Choose your pool
34a572eb 171
50aa7901 172Performance is one of the main target of these thread pool implementations, we want to have a strong focus on this.
48211d04 173We already have a bench folder where you can find some comparisons.
50aa7901
S
174To choose your pool consider that with a FixedThreadPool or a DynamicThreadPool (in this case is important the min parameter passed to the constructor) your application memory footprint will increase.
175Increasing the memory footprint, your application will be ready to accept more CPU bound tasks, but during idle time your application will consume more memory.
176One good choose from my point of view is to profile your application using Fixed/Dynamic thread pool, and to see your application metrics when you increase/decrease the num of threads.
177For example you could keep the memory footprint low choosing a DynamicThreadPool with 5 threads, and allow to create new threads until 50/100 when needed, this is the advantage to use the DynamicThreadPool.
178But in general, **always profile your application**
48211d04 179
50aa7901 180## Contribute
34a572eb 181
50aa7901
S
182See guidelines [CONTRIBUTING](CONTRIBUTING.md)
183Choose your task here [2.0.0](https://github.com/pioardi/poolifier/projects/1), propose an idea, a fix, an improvement.
1a4ec243 184
50aa7901 185## Team
1a4ec243 186
39deb558 187<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
188<!-- prettier-ignore-start -->
189<!-- markdownlint-disable -->
190
191**Creator/Owner:**
39deb558 192
50aa7901
S
193- [**Alessandro Pio Ardizio**](https://github.com/pioardi)
194
195**_Contributors_**
196
197- [**Shinigami92**](https://github.com/Shinigami92)
198- [**Jérôme Benoit**](https://github.com/jerome-benoit)
39deb558 199
50aa7901 200## License
1a4ec243 201
9507c1d4 202[MIT](./LICENSE)