0 votes
in HBase by

What is the Hbase shell command to only 10 records form a tablein HBase?

1 Answer

0 votes
by

scan 'tablename', {LIMIT=>10,

STARTROW=>"start_row",

STOPROW=>"stop_row"}

What does the following command doin HBase?

major_compact 'tablename'

Run a major compaction on the table.

Related questions

0 votes
asked Jun 13, 2020 in HBase by Robindeniel
+1 vote
asked Jun 13, 2020 in HBase by Robindeniel
...