Sqoop is an open source software product of Cloudera, Inc. Sqoop is an open source connectivity framework that facilitates transfer between multiple Relational Database Management Systems (RDBMS) and HDFS. Sqoop uses MapReduce programs to import and export data; the imports and exports are ...

learn more… | top users | synonyms

0
votes
0answers
21 views

How do I parse a binary Sqoop sequence file in a Hadoop MapReduce job?

I have imported a table into Hadoop with Sqoop as a sequence file. I can see the contents of the file using "hadoop fs -text filename", so it's obvious that Hadoop can use the jar file I created with ...
0
votes
2answers
22 views

Sqoop import failed, UnsupportedClassVersionError

I was trying to import table from MySQL to HDFS using sqoop. The commandline used is, sqoop import --connect jdbc:mysql://192.168.10.452/qw_key_test --username qw -P --split-by qw_id -m 10 ...
1
vote
1answer
41 views

How to find optimal number of mappers when running Sqoop import and export?

I'm using Sqoop version 1.4.2 and Oracle database. When running Sqoop command. For example like this: ./sqoop import \ --fs <name node> ...
0
votes
0answers
38 views

Sqoop import failed with error “no parser available for Java type org.apache.hadoop.io.BytesWritable”

I run Sqoop 1.4.3 (extracted from tarball sqoop-1.4.3.bin__hadoop-1.0.0.tar.gz) on Apache Hadoop 1.0.4 and want to import table from Mysql, but met below errors. Before submitting this question, I ...
1
vote
1answer
116 views

Running shell script through oozie

I'm trying to execute a shell script through oozie but I'm having some issues. I have a property file like this (import.properties): startIndex=2000 chunkSize=2000 The idea is, in every single ...
0
votes
1answer
49 views

data format changed when importing data from Mysql to Hbase

I am using sqoop to import data from Mysql into Hbase. It works fine but there is one issue. As i read from Sqoop documentation , sqoop converts mysql data into String and then store it in Hbase. ...
0
votes
1answer
21 views

What are Sqoop's dependencies for?

These are dependencies of Sqoop 1.4.2 (libs inside sqoop/lib): ant-contrib-1.0b3.jar ant-eclipse-1.0-jvm1.2.jar avro-1.5.3.jar avro-ipc-1.5.3.jar avro-mapred-1.5.3.jar commons-io-1.4.jar ...
0
votes
1answer
33 views

Using Sqoop incremental import as chunk-wise

Is it really possible to import chunk-wise data through sqoop incremental import? Say I have a table with rowid 1,2,3..... N (here N is 100) and now I want to import it as chunk. Like 1st import: ...
1
vote
1answer
69 views

Error while importing data from Mysql to Hbase using sqoop

I am trying to import data from Mysql to Hbase using sqoop. I am running following command. sqoop import --connect jdbc:mysql://localhost/database --table users --columns "loginid,email" --username ...
0
votes
0answers
34 views

Netbeans/Hadoop Errors: SQOOP_HOME is unset. May not be able to find all job dependencies./HADOOP_HOME is not set

I am a newbie to hadoop. I am trying to perform hadoop functions using NetBeans/Java Servlets. I added the jar files of Hadoop 0.20.2 and sqoop 1.4.2 in /lib but on executing the sqoop import ...
0
votes
0answers
46 views

Exception In SQOOP while import table from RDBMS to HBASE

I try to import a table from SQL into HBASE using following command bin/sqoop import --hbase-create-table --hbase-table userdetails --column-family details --hbase-row-key loginname --connect ...
0
votes
0answers
43 views

Sqoop single mapper behavior and performance

When using sqoop with a single mapper (--num-mappers 1) during export what actually happens behind the scenes? Do all the blocks of the HDFS file get copied into a single node where the mapper is ...
1
vote
1answer
110 views

Running Hive through Oozie

I'm facing some issues while running hive through oozie. In the oozie console, I'm getting the following error: 2013-05-03 04:48:24,248 WARN HiveActionExecutor:542 - USER[ambari_qa] GROUP[-] TOKEN[] ...
2
votes
1answer
76 views

Sqoop from within a Java program

I have read the questions on using Sqoop from within a Java program here, here and here. I came up with the following, but I am stumped by a ClassNotFoundException: import ...
1
vote
1answer
39 views

Sqoop is importing an integer as a string

I am trying to use sqoop in a lookup from Microsoft SQL Server. Here is my sqoop script: sqoop import \ --connect 'jdbc:sqlserver://LOOKUPDB-INT;database=Lookup_INT' \ --query "SELECT a.xlate_id, ...
0
votes
0answers
60 views

Sqoop import/export for blob data

I have inserted a pdf/jpg/jpeg file to blob column and trying to import it to HDFS as sequence file. and it is fine. while exporting the same to MySql it is giving java.io.IOException: Could not ...
1
vote
1answer
56 views

Execution time increases with increasing map jobs

I am trying to migrate some data from MySQL to HBase using sqoop import. Here is the command I'm using: sqoop import --connect jdbc:mysql://hostname/database --username username -P --query 'SELECT * ...
2
votes
1answer
86 views

Composite key in sqoop --hbase-row-key

Is there a way where we can set composite key in --hbase-row-key in sqoop command. Something like: --hbase-row-key column1,column2 Also, can we somehow start the key in hbase from 1 and sort of ...
1
vote
2answers
140 views

Issue with sqoop import from mysql to hbase

I am trying to import data from mysql to hbase using sqoop: sqoop import --connect jdbc:mysql://<hostname>:3306/test --username USERNAME -P --table testtable --direct --hbase-table testtable ...
0
votes
1answer
89 views

Sqoop exporting partitioned Hive table

I encountered some problems when trying to export a partitioned Hive table. Is this fully supported (I tried to google for it and found one JIRA ticket)? sqoop export --connect ...
0
votes
2answers
119 views

Sqoop Hive exited with status 1

When I execute: sqoop import --connect jdbc:mysql://localhost/testdb --table test --hive-table test --hive-import -m 1 I get following error message: 13/04/21 16:42:50 ERROR tool.ImportTool: ...
0
votes
0answers
137 views

Sqoop (import) not splitting data read from MySQL view/table

I am using Sqoop for a very basic use case. I am reading data from a MySQL view and writing it to a file on HDFS. The view have no index of course but it does have a integer column on which splits can ...
0
votes
1answer
130 views

Sqoop, Avro and Hive

I'm currently importing from Mysql into HDFS using Sqoop in avro format, this works great. However what's the best way to load these files into HIVE? Since avro files contain the schema I can pull ...
0
votes
2answers
83 views

It seems as though you are running sqoop with a JRE - But JAVA_HOME set to JDK

I tried to set up sqoop (sqoop-1.4.3.bin__hadoop-1.0.0) on Ubuntu. I can run the basic sqoop help etc without problems. When I run the following I get an error: sqoop import --connect ...
0
votes
4answers
79 views

how to convert a relational database to one Bigtable

I want to create one big table contains all the data from all table in database then export this table into csv file then import this file into Hbase ? My issue is first step which is how to create ...
0
votes
1answer
47 views

Can Sqoop export create a new table?

It is possible to export data from HDFS to RDBMS table using Sqoop. But it seems like we need to have existing table. Is there some parameter to tell Sqoop do the 'CREATE TABLE' thing and export data ...
0
votes
1answer
77 views

Sqoop Oracle Hive Error

I am having a problem with the sqoop finding my table's upper bound value. It has to be 203 but its coming null as a result of which the query (in bolded ) is wrong. hduser@hduser:~$ sudo -u hdfs ...
0
votes
1answer
100 views

How to run Sqoop with custom JDBC Driver?

I can run Sqoop without providing --driver parameter if I supply (--connect/--user/--password) for oracle thin. But I need to get it running with custom JDBC driver (it properly implements ...
0
votes
1answer
181 views

Oozie + Sqoop: JDBC Driver Jar Location

I have a 6 node cloudera based hadoop cluster and I'm trying to connect to an oracle database from a sqoop action in oozie. I have copied my ojdbc6.jar into the sqoop lib location (which for me ...
-1
votes
1answer
80 views

sqoop think you are using a jre instead of a jdk

I am using Cloudera Hadoop on a Centos 6.2 x86_64 virtualmachine. I am trying to import a table from a MySQL database into HDFS through Sqoop. I copied the ODBC driver in to the sqoop lib folder: ln ...
0
votes
1answer
54 views

How does hadoop handle changes to rows ingested from an RDBMS

I have a scenario where data is ingested into hadoop from a MYSQL database everyday into a dated folder. Few rows will be edited everyday and there might also be some schema changes. How do we handle ...
0
votes
0answers
40 views

Oracle Trigger And Sqoop

I have a table in Oracle DB which is getting appended in real time. Now i sqoop the table every time new data comes in, to transfer data to HDFS. Can Anybody help me in automating this process? The ...
1
vote
2answers
172 views

Sqoop : Truncate SQL Server table before exporting data from Hadoop

We are using Sqoop to export data from the hive to SQL Server. The new data is always appended to the existing data in SQL Server. Is it possible to truncate the SQL Server table via Sqoop before ...
0
votes
2answers
87 views

“IDENTITY_INSERT is set to off” sqoop error while exporting table to Sql Server

I am exporting a simple hive table to Sql server. Both tables have the exact schema. There is an identity column in Sql Server and I have done a "set identity_insert table_name on" on it. But when I ...
1
vote
1answer
88 views

HiveQL query performance optimization

As the number of JOINS in Hive query is increasing, the query is running in multiple stages and taking a lot of execution time. How to improve the query performance. Are there any paramters to be set? ...
1
vote
2answers
92 views

Encoding columns in Hive

I'm importing a table from mysql to hive using Sqoop. Some columns are latin1 encoded. Is there any way to do either: Set the encoding for those columns as latin1 in Hive. OR Convert the columns to ...
-1
votes
2answers
243 views

Hadoop :Approach to load Local xml files from Share location to Hive

My requirement is to load XML files which are collected in to a network share folder by different sources into Hive. I need a confirmation with approach to follow. As my understanding goes I have to ...
0
votes
2answers
226 views

How to use a specified Hive database when using sqoop import

sqoop import --connect jdbc:mysql://remote-ip/db --username xxx --password xxx --table tb --hive-import The above command imports table tb into the 'default' hive database. Can I use other database ...
0
votes
2answers
118 views

Hive - No table is listing after successful Sqoop import

After successful import into Hive using Sqoop, I can't see the recently imported table in Hive. import command ./sqoop import --connect jdbc:mysql://localhost:3306/extedu --table user --username ...
0
votes
1answer
243 views

oozie hive hadoop jobs

hi i am able to run a hive command in hive terminal but when i try to run it in through oozie i am unable to run it getting some error ans log file looks like below 2013-03-21 11:55:48,973 INFO ...
0
votes
2answers
328 views

Sqoop - Could not find or load main class org.apache.sqoop.Sqoop

I installed Hadoop, Hive, HBase, Sqoop and added them to the PATH. When I try to execute sqoop command, I'm getting this error: Error: Could not find or load main class org.apache.sqoop.Sqoop ...
0
votes
1answer
73 views

sqoop imports a lot of NULL rows

I'm importing a table from mysql to hive. The table has 2115584 rows. During the import I see 13/03/20 18:34:31 INFO mapreduce.ImportJobBase: Retrieved 2115584 records. But when I do a count(*) on ...
2
votes
1answer
70 views

Where is the sqoop library directory?

To install the MySQL connector in Sqoop I need to put the jar file in the Sqoop directory but I cannot find it (it is not in /usr/lib/sqoop). I installed Sqoop with Cloudera on multiple machines. ...
1
vote
1answer
171 views

Issue using Sqoop to import data from Sybase

I am trying to import data from Sybase using Sqoop. From logs i can say that i have mangeged to do a coonection successfully. But my job fails giving me some Sql exception from Sybase. I don't ...
0
votes
0answers
22 views

'?' Character gets converted into a set of weird characters while being imported into Hadoop DFS

I am trying to import structure data from Oracle into Hadoop DFS using Sqoop. I am facing an issue where the '?' in a string is being converted in to following ΓΆΒΆ Not sure whats going wrong. I am ...
0
votes
2answers
54 views

Sqoop importing zero decimals as 0E-22

When I import a table using hadoop and sqoop from my MSSQL database and that table has decimal columns any columns that are zero (eg 0.000000000000..) are saved as "0E-22". This is quite a pain as ...
0
votes
2answers
105 views

How to create and configure Hadoop client script?

There is a running Hadoop cluster. And I have downloaded Hadoop distribution (in this case 0.20.205.0) I need to create some shell script (bash/zsh/perl) that will be capable of calling Hadoop on ...
1
vote
0answers
282 views

Sqoop incremental import to S3 Wrong FS error

When using the --incremental append flag in the sqoop import, the job will fail. ERROR tool.ImportTool: Imported Failed: Wrong FS: s3n://<api_key>:<api_secret>@bucket/folder/ Here is the ...
0
votes
1answer
128 views

Can I use Sqoop to import data into RCFile format?

According to http://sqoop.apache.org/docs/1.4.0-incubating/SqoopUserGuide.html#id1764646 You can import data in one of two file formats: delimited text or SequenceFiles. But what about RCFile? ...
0
votes
2answers
82 views

Does sqoop acquire any locks when importing from SQL Server?

I'm using sqoop to import from SQL Server into HDFS. I'm wondering if any locks are acquired on the table I'm importing from, and if so, is there a way to do the equivalent of WITH(NOLOCK)?

1 2 3