Update Hbase过滤器详解.md

This commit is contained in:
heibaiying
2019-04-12 12:12:55 +08:00
committed by GitHub
parent c3ea7b32ca
commit f5b93243e3

View File

@ -185,7 +185,7 @@ DependentColumnFilter dependentColumnFilter = new DependentColumnFilter(
new BinaryPrefixComparator(Bytes.toBytes("xiaolan")));
```
+ 这里会先去查找`student:name`中值以`xiaolan`开头的所有数据获得`参考数据集`,这一步的查找等同于valueFilter过滤器
+ 首先会去查找`student:name`中值以`xiaolan`开头的所有数据获得`参考数据集`这一步等同于valueFilter过滤器
+ 其次再用参考数据集中所有数据的时间戳去检索其他列,获得时间戳相同的其他列的数据作为`结果数据集`,这一步等同于时间戳过滤器;