We are seeing read timed out exceptions in the application when we are trying to fetch the data with consistency level LOCAL_QUORUM
.
<code>com.datastax.driver.core.exceptions.ReadTimeoutException:
Cassandra timeout during read query at consistency ALL
(4 responses were required but only 3 replica responded)
</code>
<code>com.datastax.driver.core.exceptions.ReadTimeoutException:
Cassandra timeout during read query at consistency ALL
(4 responses were required but only 3 replica responded)
</code>
com.datastax.driver.core.exceptions.ReadTimeoutException:
Cassandra timeout during read query at consistency ALL
(4 responses were required but only 3 replica responded)
Above exception we are not seeing for all read operation for some calls we are seeing the exception.
- Cassandra version : 3.11.0
- Driver version : 3.3.1
- Data centers : 2
- No.of nodes in each DC : 10
- Replication Factor : 2
Want to know why it is taking consistency level as ALL
, even though we specified it as LOCAL_QUORUM
.
1