Details
-
Bug
-
Status: Open
-
Critical
-
Resolution: Unresolved
-
1.4.6
-
None
-
None
-
hadoop-2.6.0 , sqoop-1.4.6,hbase-1.0.1.1
Description
command: sqoop import --connect jdbc:mysql://test.host:3306/hive --table test --username hive --password hive --hbase-create-table --hbase-table version --column-family C -m 1 --verbose
I got the following error,It seems the hbase client sqoop used is not compatible with hbase server, and I tried to compile the sqoop-1.4.6 with hbase-1.0.1.1 by command "ant clean release -Dhadoopversion=200",but failed. And I found I can do it in two step:first,create the table in hbase;and then run the sqoop command without the option "--hbase-create-table".
Is there a possible way to solve the problem?
Exception in thread "main" java.lang.NoSuchMethodError: org.apache.hadoop.hbase.HTableDescriptor.addFamily(Lorg/apache/hadoop/hbase/HColumnDescriptor;)V
at org.apache.sqoop.mapreduce.HBaseImportJob.jobSetup(HBaseImportJob.java:222)
at org.apache.sqoop.mapreduce.ImportJobBase.runImport(ImportJobBase.java:264)
at org.apache.sqoop.manager.SqlManager.importTable(SqlManager.java:673)
at org.apache.sqoop.manager.MySQLManager.importTable(MySQLManager.java:118)
at org.apache.sqoop.tool.ImportTool.importTable(ImportTool.java:497)
at org.apache.sqoop.tool.ImportTool.run(ImportTool.java:605)
at org.apache.sqoop.Sqoop.run(Sqoop.java:143)
at org.apache.hadoop.util.ToolRunner.run(ToolRunner.java:70)
at org.apache.sqoop.Sqoop.runSqoop(Sqoop.java:179)
at org.apache.sqoop.Sqoop.runTool(Sqoop.java:218)
at org.apache.sqoop.Sqoop.runTool(Sqoop.java:227)
at org.apache.sqoop.Sqoop.main(Sqoop.java:236)