从HBase shell可以使用LIMIT:
hbase> scan 'test-table',{'LIMIT' => 5}
从Java API可以使用Scan.setMaxResultSize(N)或scan.setMaxResultsPerColumnFamily(N)。
> HBase API docs – Scan.setMaxResultSize
> HBase API docs – Scan.setMaxResultsPerColumnFamily