user896399
user896399

Reputation:

Query to get all column famlies data from hbase

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

Answers (2)

Suman
Suman

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

codingFoo
codingFoo

Reputation: 906

This post describes how to dump a table: http://www.rotanovs.com/hbase/hbase-importexport/

Upvotes: 1

Related Questions