我正在运行带有uWSGI的webpy Web服务器,并且有些请求需要太长时间。在设置harakiri模式后,我注意到在请求被杀之后,它会再次重试。
是否可以禁用此行为?
运行命令是:
/usr/local/bin/uwsgi --http-socket={socket} --chdir={dir} --master --module=start --max-requests=1500 --harakiri=20 --carbon-max-retry=0 --rawrouter-max-retries=0 --sslrouter-max-retries=0 --processes=1 --enable-threads --ignore-sigpipe --die-on-term --worker-reload-mercy=5 --pidfile=/tmp/uwsgi.pid
谢谢!
答案 0 :(得分:0)
如果您在uWSGI之上使用nginx,您可能还需要查看:https://news.ycombinator.com/item?id=11217477