April 2018
Beginner to intermediate
282 pages
9h 53m
English
Cloud BigTable stores massively scalable tables, while each table is a sorted key/value map.
Table rows are described as a single entity and table columns contain individual values for each row.
The following is the table structure you can refer to:

Each row in Cloud BigTable is indexed by a single row key; or we can say a single value in each row is indexed. This value is called the row key. This row key can be a unique identifier.
And each column is identified by a combination of column-family and column-qualifier. Here, column-qualifier is a unique name within the column-family. One column-family can contain ...