Will hints be stored even when the consistency level is not met?

Viewed 37

Consider cluster have 3 nodes with Keyspaces A having replicas=3 and consistency is quorom

When 2 nodes goes down, This would throw exception that consistency level doesn't met. Does 3rd node acts as a coordinator node and save the hint for some period and replay it once they are available?

Whether hints are managed even after consistency condition doesn't met?

2 Answers

No, the hint is not saved because the CL is not met. Hints are not included in the CL, so since you have 2 nodes out of 3 down, the quorum CL is not met and the driver will receive an UnavailableException from the coordinator.

Related