views:

76

answers:

2

What book would you recommend on distributed computing concepts/database internals such as the ones used for Cassandra, the concepts are listed here: Cassandra glossary?

Thanks!

+1  A: 

Since Cassandra is a mix between Amazon Dynamo and Google BigTable I suggest you go ahead and read the research papers about these systems:

Read the Dynamo paper first. Concepts like Quorum, Read Repair, Eventual Consistency, etc. are explained very well there. After that read the Big Table paper. If you don't understand some of the terms used in these papers go ahead an google for them.

fotonobile
+1  A: 

Check out the nosql summer reading list for a bunch of good papers on nosql concepts. http://nosqlsummer.org/papers

Zanson