I am having a single datacenter with 5 node cassandra cluster up and running. I have created a keyspace with RF=3 and with simple strategy. I need a clarity on below points-
With nodetool getpoints tells on which node our data got physically stored. So i get to know that my data is stored on node-2,3,4. But still i can see the respective sstable and *.db files on each node. So if data is physically stored at node-2,3,4 then why it is showing on node-0,1 as well??
After connecting through cqlsh client, consistency command showing me ONE as a default consistency level. So my understanding is now if i will perform any read or write through copy command will be executed as consistency ONE. So if i will make three or four node down at a time except a node from 2,3,4, will it have any impact on client connection (cassandra read or write query)??
Please let me know on this to get a better clarity on understanding cassandra concepts??