今天碰到不少问题,记录一下。
首先sqoop的参数要小心, 从数据库导出数据,写到HDFS的文件中的时候,字段分割符号和行分割符号必须要用
--fields-terminated-by
--input-fields-terminated-by
两个方向不一样。
官方文档的例子是错的:
The octal representation of a UTF-8 character’s code point. This should be of the form \0ooo, where ooo is the octal value. For example, --fields-terminated-by \001 would yield the ^A character.
--fields-terminated-by ‘\001‘
sqoop 导入数据到HDFS注意事项,布布扣,bubuko.com
原文地址:http://blog.csdn.net/csfreebird/article/details/29208987