Does anyone know of any good articles or books or tutorials that explain how databases of this type work internally? I'm interested in algorithms, data structures.
Asked
Active
Viewed 263 times
3
-
1Sadly these types of open-ended questions are not allowed on StackOverflow. They are encouraged on some other question-answer sites though. – ninjagecko Oct 05 '12 at 07:06
-
Typically a consistent hash takes a key onto one storage bucket in a ring. Writes block until a configured number (`W`) of machines acknowledge to increase durability. Reads block until `R` machines agree on the value to return for increased consistency. Go read http://www.allthingsdistributed.com/2007/10/amazons_dynamo.html – phs Oct 05 '12 at 07:20