Search code examples
redisdistributed-cachingredis-cache

What does "quorum reached" in redis logs? what technically it means?


What does "quorum reached" in redis logs technically what it indicates, is it problem? Am I missing anything to tuning in redis.conf parameter to fix it?

Redis log message:

Marking node a523100ddfbf844c6d1cc7e0b6a4b3a2aa970aba as failing (quorum reached).
837:M 05 May 10:30:22.216 # Cluster state changed: fail

Solution

  • The message means that the cluster had reached a consensus about that node's status and it is marked as failing. This happens when a node does not respond to the cluster's internal chatter protocol, and could be the result of any kind of failure (e.g. network, process...). You should check that node's logs for more information.