Member since
08-08-2013
109
Posts
19
Kudos Received
10
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
6596 | 07-28-2015 02:13 PM | |
79445 | 12-12-2014 07:28 AM | |
6181 | 11-19-2014 04:14 PM | |
10824 | 11-17-2014 10:35 AM | |
9449 | 08-05-2014 10:56 AM |
12-03-2014
01:59 PM
1 Kudo
You shouldn't need to provide '--driver'. Try removing it from your sqoop command.
... View more
11-19-2014
04:14 PM
Hey there, Have you fiddled with the code generation options? I think you're looking for "--class-name". http://sqoop.apache.org/docs/1.4.5/SqoopUserGuide.html#idp6782480 -Abe
... View more
11-17-2014
10:35 AM
It seems the issue is that your partition column can't be found. Sqoop should, by default, use the primary key as your partition column. If your table doesn't have a primary key, then you'll have to set it your self in "Partition column name".
... View more
11-15-2014
10:29 AM
Sqoop2 actually only has one connector, but can use different jdbc drivers to connect to a relational database. There's work to be done to make optimizations when transfering data, but the generic jdbc connector should work. Could you try running your job with "set option --name verbose --value true"? Also, please provide the output of "show connection --all" and "show job --all".
... View more
11-14-2014
02:56 PM
Also, please remove "sqljdbc.jar" as it could be taking precedence.
... View more
11-14-2014
02:54 PM
What is your exact error message with stack trace? You can turn on verbose logging via "set option --name verbose --value true"
... View more
11-13-2014
03:22 PM
Is sqljdbc4.jar in /var/lib/sqoop2.
... View more
10-30-2014
01:08 PM
Is server1.cvrunner.com your machine? If so, core-site.xml might not be configured properly. Could you try adding a property: <property>
<name>fs.defaultFS</name>
<value>hdfs://server1.cvrunner.com:8020</value>
</property>
... View more
10-29-2014
06:03 PM
It sounds like your core-site.xml on the node running the Sqoop server isn't configured properly. Does the node running Sqoop2 server have /etc/hadoop/conf/core-site.xml? If not, could you try copying your clients /etc/hadoop/conf to the node running Sqoop2 server? So, your problem should be rectifiable more easily in Sqoop 1.99.4 (CDH 5.3.0). See https://issues.apache.org/jira/browse/SQOOP-1620 for more details.
... View more