我正在尝试将mysql导入到hive,但是下面的查询没有发生 :
sqoop import --connect jdbc:mysql://localhost/cars --username root --query 'Select carnum,carname from carsinfo where $CONDITIONS' --hive-import --hive-table exams.examresults --target-dir /hive_table1_data --m 1
我在导入说
时收到错误运行导入作业的IOException:java.io.IOException。
我真的不明白我在做什么错。我花在这上面的时间。但似乎没有任何效果。
谢谢!
答案 0 :(得分:0)
您似乎忘了指定端口。 试试这个:' jdbc:mysql:// localhost:3306 / cars'当然,这假设您在默认端口上运行mysql。