Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的 hbase 表结构如下:
a1:b1 a1:b2 a2:b1 a3:b2
有什么方法可以有效地检查行键的第一部分是否存在于 hbase 表中?我不想检索记录,我只想检查 a1、a2、a3 是否存在。
如果您通过 a 执行此Scan操作,那么您只能对行键进行操作,而无需通过将以下过滤器添加到您的 来加载任何列Scan:
Scan
KeyOnlyFilter FirstKeyOnlyFilter
但是,如果您通过 a 执行此操作get,那么我认为您必须至少指定一列。如果我没记错的话,如果你没有在你的get.
get