使用过滤器限制hbase扫描结果的方法很少
FilterList filterList = new FilterList(new PageFilter(limit));
scan.setFilter(filterList);
或使用setbatch
scan.setBatch(limit);
scan.next();
我想问的是:
在哪种情况下使用哪种情况更好?
哪一个性能更好?
有没有更好的方法来使用极限?
我使用的是hbase客户端api 1.0.0和hbase 1.0.0-cdh5.6.0
1条答案
按热度按时间dw1jzc5e1#
我会使用setbatch,因为它是预定义的,但它可能会导致滞后问题。