sqoop将hive数据导入mysql

命令:

./sqoop-export  --connect jdbc:mysql://192.168.3.8:3306/db1 --username root --password 123456 --table table1--fields-terminated-by '\001' --export-dir 'hdfs://hadoop1:9000/tmp/hive/warehouse/table1'  --input-null-string '\\N' --input-null-non-string '\\N'
 

注意:

1数据库配置正确;

2.hive与mysql数据表字段一致;

3:数据字段长度能够支撑hive,不能出现TOO LONG;

4.分割字符确认;hive默认是'\001',sqoop默认是','

 

你可能感兴趣的:(大数据)