Monica Shiralkar
Monica Shiralkar

Reputation: 293

storing non keyvalue pair data in HBase tables

Using HBase we can save Big Data.However this data has to be key value pairs.what about storing any data which was in sql table which was not key value pair.How do save that in hbase table? thanks

Upvotes: 0

Views: 260

Answers (2)

questionersam
questionersam

Reputation: 1125

The simplest solution is to use the primary key of the RDBMS table as the row key. Other columns can correspond to different columns of the HBase table (some or different column families)

Upvotes: 0

Navyah
Navyah

Reputation: 1680

Hbase in HAdoop Is "NOSQL Format". Hive Supports for SQL Format. You can try loading data in Hive. In Hbase data will be in Column Oriented.

Upvotes: 1

Related Questions