简体   繁体   中英

Query column qualifiers corresponding to particular column family and rowkey in particular Hbase table

I am very new to Hbase, so it might be possible that my question doesn't make sense.
I want to know the name of all the column qualifiers corresponding to particular Column-Family, rowKey, Table-Name, so that i can iterate through all the column qualifier to extract the data from the table. Is it possible to do this ? if yes, how to do it ? Is there any better way to extract data from the table ?

Check the documentation here for Result Class https://hbase.apache.org/0.94/apidocs/org/apache/hadoop/hbase/client/Result.html You can use one of following API's as per your requirement.

getFamilyMap()
getMap()
getNoVersionMap()

Hope this helps.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM