Karthik
Karthik

Reputation: 824

Export HBase Data to RDBMS

I am using HBase to store the data but later to suit my requirements I want to export the data from HBase to RDBM like mysql or postgres. I know we have Sqoop as a option but it imports from MySQL and put it into HBase and will export the saved data in HDFS to RDBMS and it cannot import data directly from HBase.

Is there any tool to export data from HBase tables to RDBMS tables?

Upvotes: 0

Views: 2317

Answers (1)

Praveen Sripati
Praveen Sripati

Reputation: 33495

Not sure if this is a better approach, but HBase data can be exported into a flat file and then loaded into RDBMS.

Upvotes: 1

Related Questions