I checked the time series paper from google cloud https://cloud.google.com/bigtable/docs/schema-design-time-series and also the scheme design of opentsdb which is based on hbase that is very similar to bigtable.
The scheme design of opentsdb uses a lot of tricks to encode the data points and row keys into wide rows so that the size of per data point is smaller. But in the paper of Google just suggests to use narrow rows.
My question is that, can I get some real benefit from opentsdb scheme design for time series storage with bigtable. And, is it true that the compression of bigtable can help me remove redundancy so that the opentsdb schema makes very little difference?