In Hbase, I have rowkey like this : userId:timestamp:objectId. I'm trying to create a method like this:
public List<Object> getObjectList(String userId, String startrowA, int limit)
I want to get records with prefix userId, and also have paging(startrow+limit).
So how I use prefixFilter, pageFilter to do this? Thanks