I tried to deploy an application for the first time in EC2. I had three instances of cassandra in the same region with an EC2 snitch. I used datastax java driver for application connectivity.
At keyspace level, i configured NetworkTopology Strategy. When i tried to do a read operation with Consistency of QUORUM, it failed for me. I had to degrade my consistency to ONE to use the application for reads.It again failed for me.
So I had to change the keyspace config to SimpleStrategy. To my surprise , it worked with consistency ONE . But why not for NetworkTopologyStrategy?
Can you please let me know what i am missing in this case?