July 2018
Intermediate to advanced
506 pages
16h 2m
English
All Bigtable data is stored in a highly distributed, sorted map structure. Data is internally indexed at the column level by combining a row key, a column key, and a timestamp. This index is used as the key that maps to the column's actual value. The inclusion of a timestamp in the index allows Bigtable to store several versions of the same row and column, facilitating concepts such as versioning and garbage collection:

Because Bigtable stores data ...