'Sudden trouble connecting to consumer using Celery and CloudAMQP. Error message: BDB0210 celerybeat-schedule.db: metadata page checksum error
I am using CloudAMQP with Celery on Heroku to schedule tasks. When I push my code to Heroku, I am suddenly receiving the following error:
BDB0210 celerybeat-schedule.db: metadata page checksum error
consumer: Cannot connect to amqps://user:[email protected]:port/user: The read operation timed out.
It worked perfectly fine for like three months. The other day I was suddenly getting this error. I've checked the commits on GitHub, and there haven't been any adjustments to my settings. What could this error be then?
My current Heroku configurations are:
CELERY_BROKER_URL = "amqps://user:[email protected]:port/user"
CELERY_RESULT_BACKEND = "rpc://"
CELERY_ACCEPT_CONTENT = ['application/json']
CELERY_TASK_SERIALIZER = 'json'
CELERY_RESULT_SERIALIZER = 'json'
My Procfile reads:
web: gunicorn project_settings.wsgi --log-file -
worker: celery -A project_settings worker --beat
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|
