I have a similar question to
https://groups.google.com/a/lists.datastax.com/forum/#!searchin/cpp-driver-user/time$20out/cpp-driver-user/rz5KiL965Cc/jzvcxdRTBwAJ but since it was never addressed I decided to create a new one.
We are using RF = 3, consistence = QUORUM and default retry policy. We are getting an error "Operation timed out - received only 0 responses" and sometimes "received only 1 responses" for write requests when threads are stopped for a long time on one of the node (why that happens i s a separate issue).
I am trying to understand how this error is triggered. If I understand correctly write request is issued to all 3 replicas and than coordinator waits for the response from any two replicas. So even if one replica is paused that shouldn't cause an error.
What I don't understand is what happens if the coordinator is paused? Would that trigger the above time out message?
Also, which of the time outs is used in the case above? Is it driver time out settings or Cassandra?