Table of Contents

Google Big Table

About

BigTable is NoSql database where value may be versioned by time. It's then a time serie database and its open source version is called Hbase.

From Google to support actively update.

Data model

BigTable stores data:

BigTable is a Column-Oriented DB that stores data in a Multidimensional, sparse, distributed, persistent Sorted Map with the following format:

(row:string, column:string, time:int64) -> String

where:

Timestamps:

Rows

Column families

Tablet management

Write processing

Bigtable Memtable Write

Documentation / Reference