Hi,
There are 3 dc available in our infra. I saw that queries are configured consistency level of ONE for write and read queries. In this case, I am wondering how the cassandra behaves.
I am sure cassandra client sends request to one dc (because properties file in spring includes all the node ip's in dc1), but I am wondering how coordinator node decides to route this request to other nodes?
Does it route request randomly include all the nodes available in other dc?
Here is the keyspace definition:
CREATE KEYSPACE <keyspace> WITH replication = {'class': 'NetworkTopologyStrategy', 'backup_dc1': '1', 'backup_dc2': '1', 'dc1': '3', 'dc2': '3', 'dc3': '3'} AND durable_writes = true;