uwsgi icon indicating copy to clipboard operation
uwsgi copied to clipboard

requests distributed unevenly across multiple uwsgi child processes

Open Davidrjx opened this issue 2 years ago • 0 comments

problem as following screenshoot, image

almost all client requests processed by PID 8 above.

local uwsgi config

[uwsgi]
master = true
listen = 128
module = wsgi
http = :80
socket = /tmp/uwsgi.sock
add-header = Connection: Keep-Alive
http-keepalive = 65
chmod-socket = 666
processes = 3
threads = 1
disable-logging = true
buffer-size = 32768
enable-threads = true
socket-timeout = 600
harakiri = 600
lazy = true
logto = /tmp/uwsgi.log
log-maxsize = 5000000

Davidrjx avatar Apr 14 '23 02:04 Davidrjx