My questions is: "Can two column qualifiers from different column family have same name?"
I went through Google Documentation but couldn't get my answer: https://cloud.google.com/bigtable/docs/schema-design#column_families_and_column_qualifiers
I have a scenario where I am storing cumulative/avg/min/max of some measurements (pressure, temperature, volume and many more).
I am planning to store data:
col-family:col:value
cum:pressure:<value>
avg:temperature:<value>
avg:pressure:<value>
Its just an example above. Now from the example first and third entry has different column family but same column name. Is this allowed in BigTable?
Please help!