如何根据表中的两个族读取Hbase表
我想读取基于两个家庭(如姓名和年龄)的 HBase 表。 我们该怎么做呢?
I want to read a HBase table based on two family like name and age.
How do we do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
HBase 具有表、列族和列限定符。一般建议是创建尽可能少的列族 (<<10)。
行键指定特定数据。因此,如果您想获取特定行,您可以构造一个 Get:
一旦获得结果,您可以通过指定系列/限定符来提取给定的列限定符:
您还可以迭代该行中的所有键/值对(其中键包含列族/列限定符):
HBase has Tables, Column Families, and Column Qualifiers. The general advice is to create as few column families as possible (<<10).
A row key specifies the particular data. So, if you want to get a particular row you construct a Get:
Once you have a result your can pull out a given column qualifier by specifying the family/qualifier:
You can also iterate through all of the key/value pairs from the row (where the key contains the column family/column qualifier):