数据库。大行中的顺序列读取。是否可以?

发布于 2024-11-29 19:58:03 字数 138 浏览 1 评论 0原文

我以单节点模式使用HBase。我的表中的行很大。我必须使用 Java API 按顺序读取所有行中的所有列。但是 Get 和 Scan 操作返回整行(结果包含该行中的所有列)。需要大量 RAM。那么,如果某些行超出可用 RAM,我该怎么办?是否可以一一顺序读取列?

I use HBase in a single-node mode. My rows in the table are huge. I have to read sequentially all columns in all rows using Java API. But Get and Scan operations return entire row (which results contains of ALL columns from the row). A lot of RAM is required. So, what should I do in case of some rows are above available RAM? Is it possible to read columns sequentially one by one?

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

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

发布评论

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

评论(1

黯然#的苍凉 2024-12-06 19:58:03

我已经解决了这个问题。我在 Scan 类中使用了 setBatch(int batch) 方法。因此,每个 next() Scanner 方法调用返回的列数不超过固定数量。

I have solved this problem. I have used setBatch(int batch) method in Scan class. So each next() Scanner's method call returns no more than fixed number of columns.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文