In cassandra column families are just table
What's the difference between creating a table and creating a columnfamily in Cassandra?
but it seems like column family is referring to something else in gcp bigtable
https://cloud.google.com/bigtable/docs/schema-design
what exactly is column family in gcp bigtable?
bigtable is a key value store right?
And how does bigtable store its data?
column1 column2
row1 row1_column1_value row1_column2_value
row2 row1_column1_value row1_column2_value
Is it stored as
rowKey1:column1_value:column2_value rowKey2:column1_value2:column2_value2
or
rowKey1:column1_value rowKey2:column1_value2
rowKey1:column2_value rowKey2:column2_value2