I understand in Mongo we can have one master and multiple slaves where the master will be used for writes and slaves will be used for reading operations. Say M1, M2, M3 are nodes with M1 as master
But I read Cassandra is said to be a master-less model. Every node is said to be master. I did not get what it means?
Say M1, M2, M3 are nodes with M1 as master and M2, M3 are slaves in Mongo I believe write will always go M1 and read will always go to M2, M3
Say C1, C2, C3 are nodes in Cassandra Here I believe write and Read request can go to any node. That's why it is called master-less model.