We have a cassandra cluster running with 3 nodes and a replication factor of 2 -> maybe we should have selected 3 from the start, but this is not the case.
Our quorum is therefore = 2/2 + 1 = 2
Lets say we lose one node - so now only two cassandra nodes are online.
We still have the possibility to read from the cluster if we set our consistency level to "ONE" and then read -> so this is not a problem.
The thing I do not understand is the following.
We still have two nodes running, so why is it not possible to do a serial (lightweight transaction) insert into our keyspace? We have two nodes up, so shouldn't it be possible to get a quorum of 2 when trying to insert?
Is it because one of the row's is already put on the missing node?