HBase Shell: get a list of row keys

How to print only rows in a specific HBase table using hbase wrapper? The scan command displays all columns.

+7
hbase
source share
1 answer

One possible way:

count 'table_name', INTERVAL=> 1 
+13
source share

All Articles