[Fixed]-Multiple instances of celerybeat for autoscaled django app on elasticbeanstalk

-4πŸ‘

βœ…

In case someone experience similar issues: I ended up switching to a different Queue / Task framework for django. It is called django-q and was set up and working in less than an hour. It has all the features that I needed and also better Django integration than Celery (since djcelery is no longer active).

Django-q is super easy to use and also lighter than the huge Celery framework. I can only recommend it!

πŸ‘€wuser92

1πŸ‘

I guess you could single out celery beat to different group.

Your auto scaling group runs multiple django instances, but celery is not included in the ec2 config of the scaling group.

You should have different set (or just one) of instance for celery beat

πŸ‘€eugene

Leave a comment