将数据从 Hbase 导出到 hadoop

Export data from Hbase to hadoop

我想将 hbase table 数据作为 .txt 文件从 hbase 导出到 hadoop,这样我就可以使用其他工具将 .txt 文件导入到 SQL 服务器。我试过了hbase org.apache.hadoop.hbase.mapreduce.Export test /usr/hadoop/hadoop-2.2.0/test 它只给了我一个文件夹而不是txt文件。

有人可以帮忙吗?

谢谢

回声"scan 'Employee',{COLUMNS=>'EmployeeInfo:Name'}" | hbase shell | grep "^ " > EmplyeeExport.txt

此命令可能对您有所帮助....在上面的 Employee 是一个 table 而 EmployeeInfo 是列族。