I have a rails app running on a Nginx + Unicorn environnement
I see that both have a "worker_processes" in their config file and I wonder what is the optimal configuration
If I have 4 cores, should I put 4 for both? Or 1 for nginx and 4 for unicorn?
(by the way, I am using sidekiq too, so what about sidekiq concurrency?)
The general rule of thumb is to use one worker process per core that your server has. So setting
worker_processes 4;
would be optimal in your scenario for both nginx and Unicorn config files, as given by example here:nginx.conf
unicorn.rb
More information on the Sidekiq concurrency can be found here: