What would be the easiest way to get a count of hbase table rows based on a time period using the inserted timestamp? I only have found using:
hbase> count ‘t1’, INTERVAL => 100000
This does not solve my problem. There seems to be another option but I am getting 0 results?
hbase> get 'hbase_output', '*', {TIMERANGE => [1445212800,1445299200]}
COLUMN CELL
0 row(s) in 0.0900 seconds
would this be the only two options to do this? I put the '*', for all rows in the table and thinking this may be incorrect.