How to retrieve hbase column family \"values\" in any sorted order of the same?
like
column family value
--------------------
HBase itself won't do that, instead you could retrieve the list of KeyValues using the Result.raw[1] method, put that in a List and sort it by passing your own comparator to Collections.sort[2].