I might be mis-understanding your question, but if you just call addFamily on the Scan instance then all column qualifiers will be returned in the scan.
Note: this does go against one of the performance recommendations (Scan Attribute Selection) in.. http://hbase.apache.org/book.html#perf.reading Š. but if it works for your app, go for it. On 9/11/13 7:37 AM, "Jean-Marc Spaggiari" <[email protected]> wrote: >Hi Pavan, > >Have you take a look at the already existing HBase filters? >http://hbase.apache.org/apidocs/org/apache/hadoop/hbase/filter/package-sum >mary.html > >Maybe FamiliyFilter is what you are looking for? > >JM > > >2013/9/11 Pavan Sudheendra <[email protected]> > >> Hi all, >> How do i scan all the rows of HBase with only the Column Family? >> >> Coumn Family --> cf >> Column Qualifier --> \x00\x00\x06T,\x00\x00\x05d,\x00\x00\x00\x00 etc., >> >> Column Qualifier would be random so i won't know beforehand..Any idea of >> how i can do this in Java API? >> >> -- >> Regards- >> Pavan >>
