如何根据表中的两个族读取Hbase表

发布于 2024-10-21 19:40:04 字数 44 浏览 2 评论 0原文

我想读取基于两个家庭(如姓名和年龄)的 HBase 表。 我们该怎么做呢?

I want to read a HBase table based on two family like name and age.
How do we do that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

貪欢 2024-10-28 19:40:04

HBase 具有表、列族和列限定符。一般建议是创建尽可能少的列族 (<<10)。

行键指定特定数据。因此,如果您想获取特定行,您可以构造一个 Get:

Get g = new Get(rowkey);

一旦获得结果,您可以通过指定系列/限定符来提取给定的列限定符:

HTable t = new HTable(tablename);
Result row = t.get(g);
byte[] value = row.getValue(family, qualifier);

您还可以迭代该行中的所有键/值对(其中键包含列族/列限定符):

List<KeyValue> list = row.list();
for (KeyValue kv: list) {
...
}

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:

Get g = new Get(rowkey);

Once you have a result your can pull out a given column qualifier by specifying the family/qualifier:

HTable t = new HTable(tablename);
Result row = t.get(g);
byte[] value = row.getValue(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):

List<KeyValue> list = row.list();
for (KeyValue kv: list) {
...
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文