是否可以为 hbase row-keys 设置 where 条件?
是否可以为 hbase row-keys 设置 where 条件?假设我有行键 1,2,3,4,5... 我需要查询“where row-key<4”?
Is it possible to set where condition to hbase row-keys? Suppose I have row-keys 1,2,3,4,5...
I need to query like "where row-key<4"??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我认为你想要一个 InclusiveStopFilter
I think you want an InclusiveStopFilter
http://svn.apache.org/repos/asf/hbase/branches/0.90/src/main/java/org/apache/hadoop/hbase/filter/InclusiveStopFilter.java
您可以轻松编写自己的 FilterBase 实现,具有您想要的任何含义。
http://svn.apache.org/repos/asf/hbase/branches/0.90/src/main/java/org/apache/hadoop/hbase/filter/FilterBase.java
像 InclusiveStopFilter 源中一样重写 filterRowKey 方法。
You can easily write your own FilterBase implementation with any meaning you want.
http://svn.apache.org/repos/asf/hbase/branches/0.90/src/main/java/org/apache/hadoop/hbase/filter/FilterBase.java
override filterRowKey method like in InclusiveStopFilter sources.
您可以有一个扫描开始行和停止行:
You can have a scan start and stop row: