I have written sqoop script to import data from Teradata to Hive.
`sqoop import \
--connect $JDBC_URL \
--driver com.teradata.jdbc.TeraDriver \
--username $Username \
--password $Password \
--table $TD_Table \
--hive-import \
--hive-overwrite \
--hive-drop-import-delims \
--hive-table $Hive_Database.$Hive_Staging_Table \
--split-by $Split_Col \
-m $Mapper_Number`
Above script gives warning as
--connection-manager). Sqoop is going to fall back to org.apache.sqoop.manager.GenericJdbcManager.
But when i used --connection-manager with above script my --hive-drop-import-delims and --hive-overwrite stoped working
I'm trying to undersdtand what is the significance of connection-manager parameter how will it effect my imports if I'm ommiting it
Please suggest