Hive导入不是使用Sqoop进行的

时间:2016-06-23 19:40:30

标签: hadoop hive sqoop

我正在尝试将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。

我真的不明白我在做什么错。我花在这上面的时间。但似乎没有任何效果。

谢谢!

1 个答案:

答案 0 :(得分:0)

您似乎忘了指定端口。 试试这个:' jdbc:mysql:// localhost:3306 / cars'当然,这假设您在默认端口上运行mysql。