1

我想管理并查看 Sqoop (1) 的配置文件的每个参数的效果。我们如何做到这一点?

4

1 回答 1

0

Sqoop 提供了两种管理应用程序特定配置的方法。我们可以用-D <property=value>

sqoop export \
-D sqoop.export.statements.per.transaction=10 \
--connect jdbc:mysql://mysql.example.com/sqoop \
--username sqoop \
--password sqoop \
--table cities \
--export-dir cities

或将所有属性放在配置文件中,并将此文件提供给-conf <configuration file>

仅供参考:您必须在工具名称之后但任何特定于工具的参数(例如)之前提供通用参数-conf、等。-D--connect

参考:https ://sqoop.apache.org/docs/1.4.2/SqoopUserGuide.html#_using_generic_and_specific_arguments

于 2015-07-22T23:25:21.967 回答