django app in heroku getting worker timeout error

大城市里の小女人 提交于 2019-12-22 03:40:13

问题


I have deployed a django app and deployed to Heroku it takes facebook account id's as input through CSV file and parses information. it works fine in the local server but I am getting the below mentioned error when I try to upload a larger CSV file.


     14:12:16 web.1  | 2014-07-17 14:12:16 [30747] [INFO] Using worker: sync
     14:12:16 web.1  | 2014-07-17 14:12:16 [30752] [INFO] Booting worker with pid: 30752
     14:13:21 web.1  | 2014-07-17 14:13:21 [30747] [CRITICAL] WORKER TIMEOUT (pid:30752)
     14:13:21 web.1  | 2014-07-17 03:43:21 [30752] [INFO] Worker exiting (pid: 30752)
     14:13:21 web.1  | 2014-07-17 14:13:21 [30841] [INFO] Booting worker with pid: 30

回答1:


Heroku requests are limited to 30 seconds, if the request take longer than this the router will terminate the request

You can increase the LOG LEVEL of gunicorn to see if there's some error in your process




回答2:


Example of Procfile with timeout increased to 15 sec

web: gunicorn myproject.wsgi --timeout 15 --keep-alive 5 --log-level debug


来源:https://stackoverflow.com/questions/24799347/django-app-in-heroku-getting-worker-timeout-error

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!