HbaseTemplate查询
这段时间接触了HbaseTemplate中的查询,现在记录一下
hbasetemplate中查询有get、find方法
- get方法查询一个rowKey
get(String tableName, String rowName, RowMapper mapper);
- find方法查询一列
find(String tableName, Scan scan, RowMapper action);
这是最简单一行一列查询,不满足需求,现有以下业务:
- rowkey前缀模糊查询
Scan scan = new Scan();
scan.setFilter(new PrefixFilter(rowkey.getBytes()));
hbaseTemplate.find(tableNa