why worker process only use cpu0?

Maxim Dounin mdounin at mdounin.ru
Wed Jun 1 04:07:15 MSD 2011


Hello!

On Tue, May 31, 2011 at 04:07:39PM -0700, antituhan wrote:

> I have 4 core CPU's, cpu0-cpu3, but why NginX worker process only high on
> cpu0 than other cpu's ?
> This is my main configuration http://fpaste.org/VT7I

Do you mean to ask "why only one nginx process actually uses CPU" 
instead?  This usually means that nginx isn't really loaded and 
one process is enough to handle all connections/requests.

In some situations you may want to disable accept mutex via

    events {
        accept_mutex off;
        ...
    }

or tune it with accept_mutex_delay directive.  This should result 
in more even distribution of load between nginx processes.

Maxim Dounin



More information about the nginx mailing list