4

How to export HBase table from Cloud Bigtable to AWS EMR?

I know there's an official way to use Google Cloud Dataflow runner for exporting HBase tables to Google Storage. But the exported file is somehow encoded that I have no way to use it except using Google Cloud Dataflow runner to import these file back to its Cloud Bigtable.

Misha Brukman
  • 12,938
  • 4
  • 61
  • 78
Allen Huang
  • 61
  • 1
  • 5

1 Answers1

4

The Cloud Bigtable sequence files should be compatible with the HBase sequence file importer.

Misha Brukman
  • 12,938
  • 4
  • 61
  • 78
Solomon Duskis
  • 2,691
  • 16
  • 12
  • 2
    Thank you very much! This is really helpful. Btw, I also found an example for using HBase's importing util: https://blogs.msdn.microsoft.com/data_otaku/2016/12/21/working-with-the-hbase-import-and-export-utility/ – Allen Huang Mar 30 '19 at 06:52