Sqoop 导出
在以前的情况下,数据的流动是从关系型数据库到分布式文件系统(HDFS)。使用”export”工具,我们可以从HDFS导入数据到关系型数据库。在执行导出之前,Sqoop从MySQL数据库中获取表的元数据。因此,我们首先需要根据需要创建一个包含所需元数据的表。
在MySQL中创建表
mysql>Create table table_name( column_name column_type )
导出查询如下所示:
Sqoop query sqoop export \ --connect jdbc:mysql://localhost/cloudera\ --username cloudera -P \ --table exported \ --export-dir /user/country_imported/part-m-00000
现在,通过以下代码在MySQL中查看输出。
mysql> select * from exported