https://github.com/matsumotory/ngx_custom_worker_module
ngx_custom_worker_module can set the number of processes with any factor of worker_processes auto.
https://github.com/matsumotory/ngx_custom_worker_module
nginx nginx-module worker
Last synced: 4 months ago
JSON representation
ngx_custom_worker_module can set the number of processes with any factor of worker_processes auto.
- Host: GitHub
- URL: https://github.com/matsumotory/ngx_custom_worker_module
- Owner: matsumotory
- License: mit
- Created: 2017-06-01T05:41:25.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2020-07-27T22:38:11.000Z (over 5 years ago)
- Last Synced: 2025-04-30T08:51:58.644Z (8 months ago)
- Topics: nginx, nginx-module, worker
- Language: C
- Homepage:
- Size: 4.88 KB
- Stars: 7
- Watchers: 2
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ngx_custom_worker_module
ngx_custom_worker_module can set the number of processes with any factor or spare of `worker_processes auto`.
## Configuration
- the number of worker processes is __4__ if the number of cpu threads is 4.
```nginx
worker_processes auto;
```
### worker_processes_factor
- the number of worker processes is __12__ if the number of cpu threads is 4.
```nginx
worker_processes auto;
worker_processes_factor 3;
```
### worker_processes_spare
- the number of worker processes is __2__ if the number of cpu threads is 4.
```nginx
worker_processes auto;
worker_processes_spare 2;
```
### set worker_processes_factor and worker_processes_spare
The worker_processes_factor is applied before the worker_processes_spare.
- the number of worker processes is __10__ if the number of cpu threads is 4.
```nginx
worker_processes auto;
worker_processes_factor 3;
worker_processes_spare 2;
```
- the number of worker processes is __10__ if the number of cpu threads is 4.
```nginx
worker_processes auto;
worker_processes_spare 2;
worker_processes_factor 3;
```
## Install
- use nginx configure option
```
./configure --add-module=/path/to/ngx_custom_worker_module
```