Using the cassandra cluster manager, I created a cluster with 4 nodes: node1, node2, node3, node4.
Then I used cqlsh to create a keyspace with replication factor 3.
So I guess there should be 3 replicas of my data somewhere. I was expecting, that, if I create a table there would be 3 "copies" distributed over those 4 nodes
But if I stop node1 I can't access the table at all. I'm getting the message that no host is available.
Where is my error in reasoning? How can I set the replication factor so that my data is actually distributed over more than just one node?