在 hbase 数据集中通过节俭了解 ColumnFamily 和 Column 限定符来读取值
Read the values with knowing ColumnFamily and Column qualifier with thrift in a hbase dataset
我怎样才能只读取具有特定列族和列限定符的行?
所以,我知道,Column Family = "R" 和 Column = "r000003vl_*"。我怎样才能得到所有的值?
使用 "r000003vl_*" 仅扫描列族 R 和列值过滤器,如果行具有列键值,这将 return 所有行的该列数据。
使用 ColumnPrefixFilter 扫描列族 R。
https://hbase.apache.org/0.94/apidocs/org/apache/hadoop/hbase/filter/ColumnPrefixFilter.html
我怎样才能只读取具有特定列族和列限定符的行?
所以,我知道,Column Family = "R" 和 Column = "r000003vl_*"。我怎样才能得到所有的值?
使用 "r000003vl_*" 仅扫描列族 R 和列值过滤器,如果行具有列键值,这将 return 所有行的该列数据。
使用 ColumnPrefixFilter 扫描列族 R。
https://hbase.apache.org/0.94/apidocs/org/apache/hadoop/hbase/filter/ColumnPrefixFilter.html