如何从Hbase读取数据?
你好,我习惯使用 SQL,但我需要从 HBase 表中读取数据。对此的任何帮助都会很棒。一本书或者只是一些可以从表中读取的示例代码。有人说用扫描仪就可以了,但我不知道如何使用它。
Hi there I'm use to SQL, but I need to read data from a HBase table. Any help on this would be great. A book or maybe just some sample code to read from the table. Someone said using a scanner would do the trick, but I do not know how to use it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
来自 网站:
From the website:
我想提供不使用已弃用方法的解决方案
I would like to offer solution without deprecated methods
我使用了它,但要获取字符串值,您必须使用 Result 中的 getValue 方法。
I used that but to get the String value you must use method getValue from Result.