On GCP doc it says:
Because Cloud Bigtable tables are sparse, you can create as many column qualifiers as you need in each row. There is no space penalty for empty cells in a row. As a result, it often makes sense to treat column qualifiers as data. For example, if your table is storing user posts, you could use the unique identifier for each post as the column qualifier.
https://cloud.google.com/bigtable/docs/schema-design#column_families
Can anyone help me with an example? If I have 1M users and each posts 1000 posts, does it make sense to have 1B column qualifiers (1M * 1000)?
Thanks !