Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

django app in heroku getting worker timeout error

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
like image 695
shashisp Avatar asked Jul 17 '14 09:07

shashisp


People also ask

How add heroku Postgres to Django?

This post is step by step guide to on how i learnt to deploy Django apps on heroku easily using postgres as backend. STEP 1: Create a Django app ( This is if you haven't already created it). STEP 2 : Download and Install the Heroku Command Line Interface. STEP 3 : Open up your main project folder in the terminal.


2 Answers

Example of Procfile with timeout increased to 15 sec

web: gunicorn myproject.wsgi --timeout 15 --keep-alive 5 --log-level debug
like image 32
David Dehghan Avatar answered Sep 17 '22 20:09

David Dehghan


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

like image 98
fasouto Avatar answered Sep 17 '22 20:09

fasouto