views:

135

answers:

1

Cassandra offers controlled consistency like "write to 2 nodes and tell me it's done". Two "master" nodes and some slaves makes system good failover.

MongoDB offers replication pairs - simmilar failover force like cassandra? Is there any other database with this form-box functionality?

+2  A: 

Cassandra is a fully distributed system, so there is no need for explicit failover. If the machine you are sending requests to dies, you just reconnect to another (RRDNS, haproxy, any method is fine). Even losing an entire datacenter is handled by Cassandra without your app having to care.

jbellis
Thanks for reply, I mean that If the master fails more databases are unavilable to write or completly unavilable, so is there comparable master-fail resistant system like cassandra?
inquisitor
Voldemort and riak have similar designs.
jbellis