导入全表
SQOOP 提供导入所有表的工具
sqoop import-all-tables \
--connect <rdbms-jdbc-url> \
--username <username> \
--password <password> \
--hive-import \
--create-hive-table \
--hive-database <dbname> \
--warehouse-dir <warehouse-dir>
关于 import 和 import-all-tables 之间差异的重要注意事项:
需要提供 –warehouse-dir = // stage.db 数据库名作为输入参数,将所有表下载到数据库中。在 sqoop 导入中,我们将仅提供 –target-dir 而不是 –warehouse-dir
例:
sqoop import-all-tables --connect="jdbc:mysql://serverip:3306/dbname"
--username=xxx --password=yyy
-m 1 --hive-import
--hive-overwrite
--create-hive-table
--hive-database dbname
--hive-home /user/hive/warehouse
--warehouse-dir=/user/hive/warehouse/retail_stage.db