数据库。大行中的顺序列读取。是否可以?
我以单节点模式使用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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我已经解决了这个问题。我在 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.