[Solved]-Celery immediately exceeds memory on Heroku

20👍

Turns out changing the –concurrency argument in the celery worker process to a lower number worked.

I set it to celery -A chatbot worker -l info --concurrency 2 and it seems to be working!

👤Mike

Leave a comment