My customer has a computing scenario that some data were stored in Hive in cluster A and some other data were stored in Hbase in cluster B, then they want to do some join operation with the 2 kinds of tables.
so is there a way to let me do it in Hive like this:
select hive_table.col1, hbase_table.col2 from hive_table inner join hbase_table on hive_table.id = hbase_table.id
hive table and hbase table exist in the different cluster.