As a developer, I've created HBase table for our project by importing data from existing MySQL table using sqoop job
. The problem is our data analyst team are familiar with MySQL syntax, implies they can query HIVE
table easily. For them, I need to expose HBase table in HIVE. I don't want to duplicate data by populating data again in HIVE. Also, duplicating data might have consistency issues in future.
Can I expose HBase table in HIVE without duplicating data? If yes, how do I do it? Also, if I insert/update/delete
data in my HBase table will updated data appear in HIVE without any issues?
Sometimes, our data analytic team create table and populate data in HIVE. Can I expose them to HBase? If yes, how?