Mysql
 sql >> Database >  >> RDS >> Mysql

Come importare la tabella da MySQL a Hive usando Java?

Poiché il metodo delle opzioni sqoop è deprecato, puoi usare il codice seguente:

public static void importToHive() throws Exception{

    Configuration config = new Configuration(); 
    config.addResource(new Path("/usr/local/hadoop/conf/core-site.xml"));
    config.addResource(new Path("/usr/local/hadoop/conf/hdfs-site.xml"));
    String[] cmd ={"import", "--connect",<connectionString>,"--username", userName,
     "--password", password,"--hadoop-home", "/usr/local/hadoop","--table",<tableName>,   "--hive-import","--create-hive-table", "--hive-table",<tableName>,"-target-dir",
           "hdfs://localhost:54310/user/hive/warehouse","-m", "1","--delete-target-dir"};

    Sqoop.runTool(cmd,config);
}

Si prega di utilizzare il path corretto di hadoop e hive warehouse , username , password per MySQL Controlla la tua porta da core-site.xml (nel mio caso è 54310)