I have my HBase data with row key as siteid_timestamp.
ROW COLUMN+CELL
001_1454578003995 column=hd:abc, timestamp=1454578173766, value=2
001_1454578003996 column=hd:def, timestamp=1454578173766, value=2
002_1454578003997 column=hd:ijk, timestamp=1454578173766, value=2
002_1454578003998 column=hd:lmn, timestamp=1454578173766, value=2
The siteid can be different. My requirement is to get rows within a timestamp range. This timestamp will be row key without siteid and underscore. I do not want to use hbase timestamp.
So if I ask for a range of timestamp as >=1454578003995 && <=1454578003996, I should get 1st two rows.
Could you please help me with this?