[Solved]-Django Celery ConnectionError: Too many heartbeats missed

9👍

How often does it happen?

It may be that the heartbeat monitoring is not working properly in your case.
The heartbeat support was introduced fairly recently, so there may be bugs.
I cannot reproduce this here, so I need more data to understand what is going on.

You can disable heartbeats by setting BROKER_HEARTBEAT=0.
If this is a bug then the worker should run fine, but it will not be able
to quickly detect a broken connection. Being unable to detect connection loss is only
a problem in some environments (usually caused by specific router/firewall configurations)

👤asksol

Leave a comment