我正在尝试将一个sqoop导入到蜂巢数据库中。
我想知道这两个可用选项的区别
create-hcatalog-table与create-hive-table
sqoop-import
--connect jdbc:mysql://localhost:3306/hadoopexample
--table employees
--create-hive-table
--fields-terminated-by ','
;
vs
sqoop-import
--connect jdbc:mysql://localhost:3306/hadoopexample
--table employees
--create-hcatalog-table
--fields-terminated-by ','
;