在执行数据扫描时,有没有办法限制连续数据的总行数?
注意:
有人可以更好地解释这里发生的事情以及如何获得我想要的结果吗?
答案 0 :(得分:1)
您可以使用hbase shell或hbase java客户端。
1- hbase shell:使用此命令将结果传送到文件并执行" wc -l ..."
count' table_name',1
2- java hbase client api
long count=0;
String row="";
for (Result res : scanner)
{
for (Cell cell : res.listCells())
{
row = new String(CellUtil.cloneRow(cell));
if(!row.equals(""))
count++;
}
}