1. 程式人生 > >Error during export: Export job failed! sqoop遇到的錯

Error during export: Export job failed! sqoop遇到的錯

在這裡插入圖片描述
ERROR tool.ExportTool: Error during export: Export job failed

從網上檢視網友的經歷,發現可能是hive 庫表文件沒有指定分隔符,開啟hive中的對應目錄,發現所有資料沒有任何分隔符,難怪,這讓計算機怎麼去識別?這一大串的資料。

刪除現有的表,重新新建一個表,這個時候既定一定要新增上分割符。row format delimited fields terminated by '\t'  

下邊是一個簡單的案例

CREATE TABLE weblog_150520  row format delimited fields terminated by '\t' AS SELECT 150520, a.pv, b.reguser, c.ip, d.jumper FROM pv_150520 a JOIN reguser_150520 b ON 1=1 JOIN ip_150520 c ON 1=1 JOIN jumper_150520 d ON 1=1;

http://www.lishiyu.cn/post/78.html