从HBase shell可以使用LIMIT:
原文链接:https://www.f2er.com/nosql/203388.htmlhbase> scan 'test-table',{'LIMIT' => 5}
从Java API可以使用Scan.setMaxResultSize(N)或scan.setMaxResultsPerColumnFamily(N)。
> HBase API docs – Scan.setMaxResultSize
> HBase API docs – Scan.setMaxResultsPerColumnFamily