chore: v2.5.3
[poolifier.git] / README.md
CommitLineData
f2b5671a 1<div align="center">
0feeec4a 2 <img src="./images/logo.png" width="340px" height="266px"/>
ddaa3a76 3</div>
4
063f8c5b 5<h2 align="center">Node Thread Pool and Cluster Pool :arrow_double_up: :on:</h2>
1d4f79e7
APA
6
7<p align="center">
8 <a href="https://www.npmjs.com/package/poolifier">
9 <img alt="Weekly Downloads" src="https://img.shields.io/npm/dw/poolifier"></a>
d7757502 10 <a href="https://github.com/poolifier/poolifier/actions/workflows/ci.yml">
86f8562e 11 <img alt="Actions Status" src="https://github.com/poolifier/poolifier/actions/workflows/ci.yml/badge.svg"></a>
1d4f79e7
APA
12 <a href="https://sonarcloud.io/dashboard?id=pioardi_poolifier">
13 <img alt="Quality Gate Status" src="https://sonarcloud.io/api/project_badges/measure?project=pioardi_poolifier&metric=alert_status"></a>
609edfec 14 <a href="https://sonarcloud.io/dashboard?id=pioardi_poolifier">
22147b67 15 <img alt="Code Coverage" src="https://sonarcloud.io/api/project_badges/measure?project=pioardi_poolifier&metric=coverage"></a>
1d4f79e7
APA
16 <a href="https://standardjs.com">
17 <img alt="Javascript Standard Style Guide" src="https://img.shields.io/badge/code_style-standard-brightgreen.svg"></a>
18 <a href="https://gitter.im/poolifier/community?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge">
19 <img alt="Gitter chat" src="https://badges.gitter.im/poolifier/community.svg"></a>
e8a862ca
JB
20 <a href="https://opencollective.com/poolifier">
21 <img alt="Open Collective" src="https://opencollective.com/poolifier/tiers/badge.svg"></a>
8f8dc0e0
JB
22 <a href="https://badgen.net/badge/Dependabot/enabled/green?icon=dependabot">
23 <img alt="Dependabot" src="https://badgen.net/badge/Dependabot/enabled/green?icon=dependabot"></a>
1d4f79e7
APA
24 <a href="http://makeapullrequest.com">
25 <img alt="PR Welcome" src="https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square"></a>
26 <a href="https://img.shields.io/static/v1?label=dependencies&message=no%20dependencies&color=brightgreen">
27 <img alt="No dependencies" src="https://img.shields.io/static/v1?label=dependencies&message=no%20dependencies&color=brightgreen"></a>
1d4f79e7
APA
28</p>
29
74750c7f 30## Why Poolifier?
e76f5485 31
4dce520e 32Poolifier is used to perform CPU intensive and I/O intensive tasks on nodejs servers, it implements worker pools using [worker-threads](https://nodejs.org/api/worker_threads.html#worker_threads_worker_threads) and cluster pools using [Node.js cluster](https://nodejs.org/api/cluster.html) modules.
50aa7901 33With poolifier you can improve your **performance** and resolve problems related to the event loop.
063f8c5b 34Moreover you can execute your tasks using an API designed to improve the **developer experience**.
0feeec4a 35Please consult our [general guidelines](#general-guidance).
e76f5485 36
64060857 37- Performance :racehorse: [benchmarks](./benchmarks/README.md)
f2b5671a 38- 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)
b1b24f66 39- Easy to use :couple:
82be29c0 40- Dynamic pool size :white_check_mark:
e42a859c 41- Easy switch from a pool to another :white_check_mark:
82be29c0
JB
42- No runtime dependencies :white_check_mark:
43- Proper async integration with node async hooks :white_check_mark:
44- Support for worker threads and cluster node modules :white_check_mark:
45- Support sync and async tasks :white_check_mark:
89a4abfd 46- Tasks distribution strategies :white_check_mark:
82be29c0
JB
47- General guidance on pools to use :white_check_mark:
48- Widely tested :white_check_mark:
49- Error handling out of the box :white_check_mark:
50- Active community :white_check_mark:
5fd75a2e 51- Code quality :octocat: [![Bugs](https://sonarcloud.io/api/project_badges/measure?project=pioardi_poolifier&metric=bugs)](https://sonarcloud.io/dashboard?id=pioardi_poolifier)
d28c7996
JB
52 [![Code Smells](https://sonarcloud.io/api/project_badges/measure?project=pioardi_poolifier&metric=code_smells)](https://sonarcloud.io/dashboard?id=pioardi_poolifier)
53 [![Duplicated Lines (%)](https://sonarcloud.io/api/project_badges/measure?project=pioardi_poolifier&metric=duplicated_lines_density)](https://sonarcloud.io/dashboard?id=pioardi_poolifier)
54 [![Maintainability Rating](https://sonarcloud.io/api/project_badges/measure?project=pioardi_poolifier&metric=sqale_rating)](https://sonarcloud.io/dashboard?id=pioardi_poolifier)
55 [![Reliability Rating](https://sonarcloud.io/api/project_badges/measure?project=pioardi_poolifier&metric=reliability_rating)](https://sonarcloud.io/dashboard?id=pioardi_poolifier)
56 [![Technical Debt](https://sonarcloud.io/api/project_badges/measure?project=pioardi_poolifier&metric=sqale_index)](https://sonarcloud.io/dashboard?id=pioardi_poolifier)
ddaa3a76 57
50aa7901 58## Contents
e76f5485 59
34a572eb 60<h3 align="center">
50aa7901
S
61 <a href="#overview">Overview</a>
62 <span> · </span>
34a572eb 63 <a href="#installation">Installation</a>
64 <span> · </span>
65 <a href="#usage">Usage</a>
66 <span> · </span>
4f4ae1cb 67 <a href="#node-versions">Node versions</a>
50aa7901 68 <span> · </span>
34a572eb 69 <a href="#api">API</a>
70 <span> · </span>
e36cfb13 71 <a href="#general-guidance">General guidance</a>
48211d04 72 <span> · </span>
34a572eb 73 <a href="#contribute">Contribute</a>
74 <span> · </span>
50aa7901 75 <a href="#team">Team</a>
34a572eb 76 <span> · </span>
77 <a href="#license">License</a>
78</h3>
79
50aa7901 80## Overview
13031992 81
31b90205
JB
82Node pool contains two [worker-threads](https://nodejs.org/api/worker_threads.html#worker_threads_worker_threads)/[cluster worker](https://nodejs.org/api/cluster.html#cluster_class_worker) pool implementations, you don't have to deal with worker-threads/cluster worker complexity.
83The first implementation is a static worker pool, with a defined number of workers that are started at creation time and will be reused.
84The second implementation is a dynamic worker pool with a number of worker started at creation time (these workers will be always active and reused) and other workers created when the load will increase (with an upper limit, these workers will be reused when active), the new created workers will be stopped after a configurable period of inactivity.
0feeec4a 85You have to implement your worker extending the ThreadWorker or ClusterWorker class.
50aa7901
S
86
87## Installation
88
89```shell
27c5fb75 90npm install poolifier --save
1a4ec243 91```
1a4ec243 92
50aa7901
S
93## Usage
94
31b90205 95You can implement a worker-threads worker in a simple way by extending the class ThreadWorker:
1a4ec243
APA
96
97```js
98'use strict'
d2eb4964 99const { ThreadWorker } = require('poolifier')
1a4ec243 100
78cea37e 101function yourFunction(data) {
106744f7 102 // this will be executed in the worker thread,
103 // the data will be received by using the execute method
104 return { ok: 1 }
105}
106
50aa7901 107module.exports = new ThreadWorker(yourFunction, {
124119cf 108 maxInactiveTime: 60000
50aa7901 109})
1a4ec243
APA
110```
111
0feeec4a 112Instantiate your pool based on your needs :
1a4ec243
APA
113
114```js
115'use strict'
aee46736 116const { DynamicThreadPool, FixedThreadPool, PoolEvents } = require('poolifier')
1a4ec243 117
31b90205 118// a fixed worker-threads pool
1a4ec243 119const pool = new FixedThreadPool(15,
106744f7 120 './yourWorker.js',
121 { errorHandler: (e) => console.error(e), onlineHandler: () => console.log('worker is online') })
1a4ec243 122
aee46736 123pool.emitter.on(PoolEvents.busy, () => console.log('Pool is busy'))
164d950a 124
31b90205 125// or a dynamic worker-threads pool
1a4ec243 126const pool = new DynamicThreadPool(10, 100,
106744f7 127 './yourWorker.js',
128 { errorHandler: (e) => console.error(e), onlineHandler: () => console.log('worker is online') })
129
aee46736
JB
130pool.emitter.on(PoolEvents.full, () => console.log('Pool is full'))
131pool.emitter.on(PoolEvents.busy, () => console.log('Pool is busy'))
1a4ec243
APA
132
133// the execute method signature is the same for both implementations,
134// so you can easy switch from one to another
135pool.execute({}).then(res => {
136 console.log(res)
777b7824 137}).catch ....
1a4ec243
APA
138
139```
140
17a9a094 141You can do the same with the classes ClusterWorker, FixedClusterPool and DynamicClusterPool.
31b90205 142
4abb4f36 143**See examples folder for more details (in particular if you want to use a pool with [multiple worker functions](./examples/multiFunctionExample.js))**.
1a4ec243 144
ec2ccfc8 145Remember that workers can only send and receive serializable data.
deb85c12 146
50aa7901 147## Node versions
34a572eb 148
9e45c2c4 149Node versions >= 16.14.x are supported.
1a4ec243 150
059ea823 151## [API](https://poolifier.github.io/poolifier/)
4680c1b2 152
31b90205 153### `pool = new FixedThreadPool/FixedClusterPool(numberOfThreads/numberOfWorkers, filePath, opts)`
50aa7901 154
f42ca86f 155`numberOfThreads/numberOfWorkers` (mandatory) Number of workers for this pool
50aa7901 156`filePath` (mandatory) Path to a file with a worker implementation
f42ca86f 157`opts` (optional) An object with these properties:
50aa7901 158
46e857ca 159- `messageHandler` (optional) - A function that will listen for message event on each worker
f42ca86f
JB
160- `errorHandler` (optional) - A function that will listen for error event on each worker
161- `onlineHandler` (optional) - A function that will listen for online event on each worker
162- `exitHandler` (optional) - A function that will listen for exit event on each worker
46e857ca 163- `workerChoiceStrategy` (optional) - The worker choice strategy to use in this pool:
5519f8f3 164
46e857ca 165 - `WorkerChoiceStrategies.ROUND_ROBIN`: Submit tasks to worker in a round robbin fashion
e4543b14
JB
166 - `WorkerChoiceStrategies.LEAST_USED`: Submit tasks to the least used worker
167 - `WorkerChoiceStrategies.LEAST_BUSY`: Submit tasks to the least busy worker
cb9eb085 168 - `WorkerChoiceStrategies.WEIGHTED_ROUND_ROBIN`: Submit tasks to worker using a weighted round robin scheduling algorithm based on tasks execution time
71002f09 169 - `WorkerChoiceStrategies.INTERLEAVED_WEIGHTED_ROUND_ROBIN`: Submit tasks to worker using an interleaved weighted round robin scheduling algorithm based on tasks execution time (experimental)
46e857ca 170 - `WorkerChoiceStrategies.FAIR_SHARE`: Submit tasks to worker using a fair share tasks scheduling algorithm based on tasks execution time
5519f8f3 171
dfd00839 172 `WorkerChoiceStrategies.WEIGHTED_ROUND_ROBIN` and `WorkerChoiceStrategies.FAIR_SHARE` strategies are targeted to heavy and long tasks.
f42ca86f 173 Default: `WorkerChoiceStrategies.ROUND_ROBIN`
5519f8f3 174
da309861
JB
175- `workerChoiceStrategyOptions` (optional) - The worker choice strategy options object to use in this pool.
176 Properties:
177
9e45c2c4 178 - `medRunTime` (optional) - Use the tasks median runtime instead of the tasks average runtime in worker choice strategies.
4c0ada52 179 - `weights` (optional) - The worker weights to use in the weighted round robin worker choice strategy: `{ 0: 200, 1: 300, ..., n: 100 }`
7171d33f 180
dfd00839 181 Default: `{ medRunTime: false }`
da309861 182
1f68cede
JB
183- `restartWorkerOnError` (optional) - Restart worker on uncaught error in this pool.
184 Default: true
dfd00839
JB
185- `enableEvents` (optional) - Events emission enablement in this pool.
186 Default: true
187- `enableTasksQueue` (optional) - Tasks queue per worker enablement in this pool.
188 Default: false
34a572eb 189
83d127b9 190- `tasksQueueOptions` (optional) - The worker tasks queue options object to use in this pool.
7171d33f
JB
191 Properties:
192
193 - `concurrency` (optional) - The maximum number of tasks that can be executed concurrently on a worker.
194
dfd00839 195 Default: `{ concurrency: 1 }`
7171d33f 196
31b90205 197### `pool = new DynamicThreadPool/DynamicClusterPool(min, max, filePath, opts)`
50aa7901 198
31b90205
JB
199`min` (mandatory) Same as FixedThreadPool/FixedClusterPool numberOfThreads/numberOfWorkers, this number of workers will be always active
200`max` (mandatory) Max number of workers that this pool can contain, the new created workers will die after a threshold (default is 1 minute, you can override it in your worker implementation).
201`filePath` (mandatory) Same as FixedThreadPool/FixedClusterPool
202`opts` (optional) Same as FixedThreadPool/FixedClusterPool
34a572eb 203
204### `pool.execute(data)`
50aa7901 205
0feeec4a
JB
206`data` (optional) An object that you want to pass to your worker implementation
207This method is available on both pool implementations and returns a promise.
34a572eb 208
209### `pool.destroy()`
34a572eb 210
50aa7901
S
211Destroy method is available on both pool implementations.
212This method will call the terminate method on each worker.
34a572eb 213
31b90205 214### `class YourWorker extends ThreadWorker/ClusterWorker`
50aa7901 215
a86b6df1 216`taskFunctions` (mandatory) The task function(s) that you want to execute on the worker
50aa7901
S
217`opts` (optional) An object with these properties:
218
dfd00839 219- `maxInactiveTime` (optional) - Max time to wait tasks to work on in milliseconds, after this period the new worker will die.
3832ad95
S
220 The last active time of your worker unit will be updated when a task is submitted to a worker or when a worker terminate a task.
221 If `killBehavior` is set to `KillBehaviors.HARD` this value represents also the timeout for the tasks that you submit to the pool, when this timeout expires your tasks is interrupted and the worker is killed if is not part of the minimum size of the pool.
222 If `killBehavior` is set to `KillBehaviors.SOFT` your tasks have no timeout and your workers will not be terminated until your task is completed.
dfd00839 223 Default: 60000
15eacd5d 224
dfd00839 225- `killBehavior` (optional) - Dictates if your async unit (worker/process) will be deleted in case that a task is active on it.
f42ca86f 226 **KillBehaviors.SOFT**: If `currentTime - lastActiveTime` is greater than `maxInactiveTime` but a task is still running, then the worker **won't** be deleted.
a9d9ea34 227 **KillBehaviors.HARD**: If `currentTime - lastActiveTime` is greater than `maxInactiveTime` but a task is still running, then the worker will be deleted.
3832ad95 228 This option only apply to the newly created workers.
f42ca86f 229 Default: `KillBehaviors.SOFT`
50aa7901 230
e36cfb13 231## General guidance
34a572eb 232
31b90205 233Performance is one of the main target of these worker pool implementations, we want to have a strong focus on this.
e36cfb13
APA
234We already have a bench folder where you can find some comparisons.
235
236### Internal Node.js thread pool
237
238Before to jump into each poolifier pool type, let highlight that **Node.js comes with a thread pool already**, the libuv thread pool where some particular tasks already run by default.
239Please take a look at [which tasks run on the libuv thread pool](https://nodejs.org/en/docs/guides/dont-block-the-event-loop/#what-code-runs-on-the-worker-pool).
240
e843b904 241**If your task runs on libuv thread pool**, you can try to:
e36cfb13 242
0feeec4a 243- Tune the libuv thread pool size setting the [UV_THREADPOOL_SIZE](https://nodejs.org/api/cli.html#cli_uv_threadpool_size_size).
e36cfb13
APA
244
245and/or
246
0feeec4a 247- Use poolifier cluster pool that spawning child processes will also increase the number of libuv threads since that any new child process comes with a separated libuv thread pool. **More threads does not mean more fast, so please tune your application**.
e36cfb13
APA
248
249### Cluster vs Threads worker pools
250
251**If your task does not run into libuv thread pool** and is CPU intensive then poolifier **thread pools** (FixedThreadPool and DynamicThreadPool) are suggested to run CPU intensive tasks, you can still run I/O intensive tasks into thread pools, but performance enhancement is expected to be minimal.
063f8c5b 252Thread pools are built on top of Node.js [worker-threads](https://nodejs.org/api/worker_threads.html#worker_threads_worker_threads) module.
253
e36cfb13
APA
254**If your task does not run into libuv thread pool** and is I/O intensive then poolifier **cluster pools** (FixedClusterPool and DynamicClusterPool) are suggested to run I/O intensive tasks, again you can still run CPU intensive tasks into cluster pools, but performance enhancement is expected to be minimal.
255Consider that by default Node.js already has great performance for I/O tasks (asynchronous I/O).
4a6952ff 256Cluster pools are built on top of Node.js [cluster](https://nodejs.org/api/cluster.html) module.
75876e4c 257
e36cfb13 258If your task contains code that runs on libuv plus code that is CPU intensive or I/O intensive you either split it either combine more strategies (i.e. tune the number of libuv threads and use cluster/thread pools).
0feeec4a 259But in general, **always profile your application**.
e36cfb13
APA
260
261### Fixed vs Dynamic pools
063f8c5b 262
31b90205 263To choose your pool consider that with a FixedThreadPool/FixedClusterPool or a DynamicThreadPool/DynamicClusterPool (in this case is important the min parameter passed to the constructor) your application memory footprint will increase.
063f8c5b 264Increasing the memory footprint, your application will be ready to accept more tasks, but during idle time your application will consume more memory.
31b90205
JB
265One good choose from my point of view is to profile your application using Fixed/Dynamic worker pool, and to see your application metrics when you increase/decrease the num of workers.
266For example you could keep the memory footprint low choosing a DynamicThreadPool/DynamicClusterPool with 5 workers, and allow to create new workers until 50/100 when needed, this is the advantage to use the DynamicThreadPool/DynamicClusterPool.
0feeec4a 267But in general, **always profile your application**.
48211d04 268
50aa7901 269## Contribute
34a572eb 270
d1affa4c 271Choose your task here [2.4.x](https://github.com/orgs/poolifier/projects/1), propose an idea, a fix, an improvement.
1a4ec243 272
0feeec4a
JB
273See [CONTRIBUTING](CONTRIBUTING.md) guidelines.
274
50aa7901 275## Team
1a4ec243 276
39deb558 277<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
39deb558 278
279**Creator/Owner:**
39deb558 280
50aa7901
S
281- [**Alessandro Pio Ardizio**](https://github.com/pioardi)
282
283**_Contributors_**
284
285- [**Shinigami92**](https://github.com/Shinigami92)
286- [**Jérôme Benoit**](https://github.com/jerome-benoit)
39deb558 287
50aa7901 288## License
1a4ec243 289
9507c1d4 290[MIT](./LICENSE)