How to use Sqoop in Java Program? How to use Sqoop in Java Program? hadoop hadoop

How to use Sqoop in Java Program?


You can run sqoop from inside your java code by including the sqoop jar in your classpath and calling the Sqoop.runTool() method. You would have to create the required parameters to sqoop programmatically as if it were the command line (e.g. --connect etc.).

Please pay attention to the following:

  • Make sure that the sqoop tool name (e.g. import/export etc.) is the first parameter.
  • Pay attention to classpath ordering - The execution might fail because sqoop requires version X of a library and you use a different version. Ensure that the libraries that sqoop requires are not overshadowed by your own dependencies. I've encountered such a problem with commons-io (sqoop requires v1.4) and had a NoSuchMethod exception since I was using commons-io v1.2.
  • Each argument needs to be on a separate array element. For example, "--connect jdbc:mysql:..." should be passed as two separate elements in the array, not one.
  • The sqoop parser knows how to accept double-quoted parameters, so use double quotes if you need to (I suggest always). The only exception is the fields-delimited-by parameter which expects a single char, so don't double-quote it.
  • I'd suggest splitting the command-line-arguments creation logic and the actual execution so your logic can be tested properly without actually running the tool.
  • It would be better to use the --hadoop-home parameter, in order to prevent dependency on the environment.
  • The advantage of Sqoop.runTool() as opposed to Sqoop.Main() is the fact that runTool() return the error code of the execution.

Hope that helps.

final int ret = Sqoop.runTool(new String[] { ... });if (ret != 0) {  throw new RuntimeException("Sqoop failed - return code " + Integer.toString(ret));}

RL


Find below a sample code for using sqoop in Java Program for importing data from MySQL to HDFS/HBase. Make sure you have sqoop jar in your classpath:

        SqoopOptions options = new SqoopOptions();        options.setConnectString("jdbc:mysql://HOSTNAME:PORT/DATABASE_NAME");        //options.setTableName("TABLE_NAME");        //options.setWhereClause("id>10");     // this where clause works when importing whole table, ie when setTableName() is used        options.setUsername("USERNAME");        options.setPassword("PASSWORD");        //options.setDirectMode(true);    // Make sure the direct mode is off when importing data to HBase        options.setNumMappers(8);         // Default value is 4        options.setSqlQuery("SELECT * FROM user_logs WHERE $CONDITIONS limit 10");        options.setSplitByCol("log_id");        // HBase options        options.setHBaseTable("HBASE_TABLE_NAME");        options.setHBaseColFamily("colFamily");        options.setCreateHBaseTable(true);    // Create HBase table, if it does not exist        options.setHBaseRowKeyColumn("log_id");        int ret = new ImportTool().run(options);

As suggested by Harel, we can use the output of the run() method for error handling. Hoping this helps.


There is a trick which worked out for me pretty well. Via ssh, you can execute the Sqoop command directly. Just you have to use is an SSH Java Library

This is independent of Java. You just need to include any SSH library and sqoop installed in the remote system you want to perform the import. Now connect to the system via ssh and execute the commands which will export data from MySQL to hive.

You have to follow this step.

Download sshxcute java library: https://code.google.com/p/sshxcute/and Add it to the build path of your java project which contains the following Java code

import net.neoremind.sshxcute.core.SSHExec;import net.neoremind.sshxcute.core.ConnBean;import net.neoremind.sshxcute.task.CustomTask;import net.neoremind.sshxcute.task.impl.ExecCommand;public class TestSSH {public static void main(String args[]) throws Exception{    // Initialize a ConnBean object, the parameter list is IP, username, password    ConnBean cb = new ConnBean("192.168.56.102", "root","hadoop");    // Put the ConnBean instance as parameter for SSHExec static method getInstance(ConnBean) to retrieve a singleton SSHExec instance    SSHExec ssh = SSHExec.getInstance(cb);              // Connect to server    ssh.connect();    CustomTask sampleTask1 = new ExecCommand("echo $SSH_CLIENT"); // Print Your Client IP By which you connected to ssh server on Horton Sandbox    System.out.println(ssh.exec(sampleTask1));    CustomTask sampleTask2 = new ExecCommand("sqoop import --connect jdbc:mysql://192.168.56.101:3316/mysql_db_name --username=mysql_user --password=mysql_pwd --table mysql_table_name --hive-import -m 1 -- --schema default");    ssh.exec(sampleTask2);    ssh.disconnect();   }}