Grokking the System Design Interview, Volume II
0% completed
Summary: BigTable
We have now covered BigTable's data model, its architecture, how it survives failure, and the refinements that make it fast. Here is all of it in one place.
Summary
- BigTable is Google's distributed storage system for managing large amounts of structured data. It aims for high availability, low latency, scalability, and fault tolerance. Structurally, it is a sparse, distributed, persistent, multidimensional sorted map.
- The map's key has three parts: a row key, a column key, and a timestamp, a 64-bit integer that reads as "real time" in milliseconds
.....
.....
.....
Like the course? Get enrolled and start learning!
Reading Progress
0%