Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am launching a django application on aws elastic beanstalk. I'd like to run background task or worker in order order to run celery.

I can not find if it is possible or not. If yes how it could be achieve.

Here is what I am doing right now but this is producing every time an event type error.

container_commands:
  01_syncdb:
    command: "django-admin.py syncdb --noinput"
    leader_only: true
  50_sqs_email:
    command: "./manage.py celery worker --loglevel=info"
    leader_only: true

Thanks for the help,

share|improve this question
what kind of error do you have? – EsseTi Feb 13 at 11:13
I suspect you need to run celery in daemon mode: docs.celeryproject.org/en/latest/tutorials/… which would require a custom AMI for your beanstalk. This is not for the fainthearted as suggested here: docs.aws.amazon.com/elasticbeanstalk/latest/dg/… – Chris Wheadon Feb 18 at 12:06
I think you can find an answer here: stackoverflow.com/questions/12813586/… – Zaar Hai Mar 20 at 13:45

1 Answer

I was trying to do something similar in PHP however for whatever reason I couldn't keep the worker running. I switched to a AMI on an EC2 server and have had success ever since.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.