sqoop常用命令

1、利用sqoop在hive中创建一个与mysql中一摸一样的表

sqoop create-hive-table --connect jdbc:mysql://192.168.179.10:7001/test --username root --password 123  --hive-database hive --table test6 --hive-table test6

2、利用sqoop将mysql中的数据导入到hive中

sqoop import --connect jdbc:mysql://192.168.179.10:7001/test --username root --password 123  --hive-database hive --table test6 --hive-import

3、利用sqoop将hive中的表导入到mysql中(m指定是mr程序个数)

sqoop export --connect jdbc:mysql://192.168.179.10:7001/test --username root --password 123 --table test6 --export-dir /user/hive/warehouse/test6 --input-fields-terminated-by '\001' -m 2


你可能感兴趣的:(sqoop常用命令)