开发者

nginx + uwsgi 502 Bad Gateway python

开发者 https://www.devze.com 2023-04-09 08:26 出处:网络
I\'m running a script in python and takes a long time to process. The thing is if the function takes to long to run, i guess the nginx has a timeout, in his configuration and that prevents somekind of

I'm running a script in python and takes a long time to process. The thing is if the function takes to long to run, i guess the nginx has a timeout, in his configuration and that prevents somekind of errors, and preven开发者_StackOverflow社区ts the function to run completely.

I just want to know were i can increse the value of the timeout. Because i've tried some commands in the file conf of nginx such as:

uwsgi_connect_timeout 75;
uwsgi_send_timeout 75;
uwsgi_read_timeout 75;
keepalive_timeout 650;

but none of this worked.

Thks in advance


The problem with just extending the timeout is that no matter how much longer you set it to you will run into limitations somewhere along the line. Either with the web server, the browser or your geocode calls. If it is something that routinely fails n times in a request, then you can't really make any guarantees.

So rather than having the client request hanging on a long running process (and by extension risking a server timeout), why don't you use something like celery to run those geocode tasks and on the client-side, submit your client-side request via javascript and poll the server for the answer via ajax until it get's a response?


I also had Bad gateway error in NGIX + uWSGI configuration, and for sake of people who google this question: it might be missing uwsgi python plugin. Please see: uWSGI configuration issue: uwsgi fails without any error message..


I tried everything written in the above response as well as other places but they did not work.

My solution was changing my socket in both the uwsgi.conf and nginx.conf files.

0

精彩评论

暂无评论...
验证码 换一张
取 消