sqoop 导入mysql中表存在联合主键

将hdfs 中数据导入mysql

sqoop export  --connect jdbc:mysql://10.130.2.245:3306/test 

--update-key "id,name" --update-mode allowinsert  --username dp  --password '123456'  

--table test123  --fields-terminated-by ' ' --columns "id,name,age" --export-dir /hive/warehouse/test123 

1)  -update-key 指定联合主键的值
2)  --update-mode allowinsert 指定更新的模式为可插入,默认为 updateonly

原文地址:https://www.cnblogs.com/sunt9/p/6670365.html