使用Python修复uWSGI中的管道损坏错误

时间:2014-06-10 05:12:49

标签: python rest timeout wsgi uwsgi

在Python中访问REST资源(my_resource)时,uWSGI服务器在其日志中抛出以下错误:

SIGPIPE: writing to a closed pipe/socket/fd (probably the client disconnected) on request my_resource (ip <my_ip>) !!!
uwsgi_response_write_body_do(): Broken pipe [core/writer.c line 164]
IOError: write error

它似乎与超时有关(客户端在请求完成处理之前断开连接)。

这是什么类型的超时以及如何解决?

2 个答案:

答案 0 :(得分:9)

这取决于您的前端服务器。例如,nginx具有uwsgi_read_timeout参数。 (通常设为60秒)。 uWSGI http路由器的--http-timeout默认为60秒,依此类推。当你在谈论休息时,我很怀疑它需要超过60秒才能生成响应,你确定你没有错误的响应标头触发前端网络服务器关闭连接吗?

答案 1 :(得分:1)

如果您使用的是uwsgi nginx插件,请考虑使用

uwsgi_connect_timeout 180;
uwsgi_read_timeout 180;
uwsgi_send_timeout 180;