Reputation:
Is there a way to get all data from hbase database from all column families without mentioning the key. Actually I want to know about query to get all data.
Upvotes: 1
Views: 185
Reputation: 9561
You will have to do a scan on the tables. If you have HBase shell, run it, and then run
scan 'tablename'
Are you looking for a way to do this on all tables in the database?
Upvotes: 0
Reputation: 906
This post describes how to dump a table: http://www.rotanovs.com/hbase/hbase-importexport/
Upvotes: 1