Sqoop文档显示--options-file
的示例:
#
# Options file for Sqoop import
#
# Specifies the tool being invoked
import
# Connect parameter and value
--connect
jdbc:mysql://localhost/db
# Username parameter and value
--username
foo
#
# Remaining options should be specified in the command line.
#
如上所述,如果它只是连接信息,并且根据评论,应在命令行中指定所有剩余选项,为什么它在--options-file
而不是--connection-param-file
?
答案 0 :(得分:2)
注释应在命令行中指定剩余选项具有误导性。它只是表明可以在选项文件中有注释。但是,不意味着您无法指定更多选项。
我正在使用Sqoop的选项文件,它们包含连接详细信息以及The literal 10000000000000000000000000000000 of type int is out of range
或--num-mappers
。