mongodb and cassandra pros/cons for a multidatacenter system
I need information, pros/cons about multidatacenter replication in mongodb replica sets vs cassandra for a 3 开发者_开发问答node (one of them is in another datacenter) setup.
Best Regards
http://www.datastax.com/dev/blog/deploying-cassandra-across-multiple-data-centers
MongoDB has no master-master replication which is usually desirable for replication across data center - at least when you want to deal with writes in each data-center. With replica sets in MongoDb you have only one master for the writes. If reading from the secondaries in one data-center is "good enough" then MongoDB with replica-sets might be an option but if master-master replication is a requirement.
精彩评论