5
0
mirror of https://github.com/apache/sqoop.git synced 2025-05-02 22:49:59 +08:00
Go to file
Jarek Jarcec Cecho 9158dc99b3 Updating CHANGELOG file with recently committed changes.
(Committing as Release Manager without review)
2012-12-21 12:02:47 -08:00
client SQOOP-784: Creating job for connection with id > 1 will results 2012-12-17 17:37:47 -08:00
common SQOOP-774: exception is thrown when creating a connection object if 2012-12-17 17:37:25 -08:00
connector SQOOP-788 Import sometimes duplicate some data 2012-12-18 18:02:40 -08:00
core Changing version to 1.99.1 2012-12-12 17:56:31 -08:00
dist SQOOP-775 Addtowar.sh script is silently ignoring unknown arguments 2012-12-17 17:37:30 -08:00
docs SQOOP-778: Remove empty SqoopUserGuide and SqoopDeveloperGuide 2012-12-15 23:08:42 -08:00
execution SQOOP-790: Remove flakiness from TestSqoopOutputformatLoadExecutor 2012-12-18 18:28:47 -08:00
repository Changing version to 1.99.1 2012-12-12 17:56:31 -08:00
server Changing version to 1.99.1 2012-12-12 17:56:31 -08:00
spi Changing version to 1.99.1 2012-12-12 17:56:31 -08:00
submission SQOOP-779: Sqoop2: NPE when JobConnectorContext has a null value 2012-12-15 23:08:37 -08:00
.gitattributes SQOOP-651: adding .gitattributes to prevent CRLF and LF mismatches for source and text files 2012-10-25 15:40:22 -07:00
.gitignore SQOOP-688: Add netbeans files to gitignore and rat 2012-11-08 17:12:18 -08:00
CHANGELOG.txt Updating CHANGELOG file with recently committed changes. 2012-12-21 12:02:47 -08:00
LICENSE.txt SQOOP-786: Include jars from WAR archive in LICENSE.txt file 2012-12-17 17:37:58 -08:00
NOTICE.txt SQOOP-800 Update NOTICE file 2012-12-21 12:02:42 -08:00
pom.xml SQOOP-761: HDFSTextExportExtractor loses lines around partition boundaries 2012-12-15 23:08:47 -08:00
README.txt SQOOP-772: OutOfMemory from document generation 2012-12-17 17:37:41 -08:00

= Welcome to Sqoop

Apache Sqoop is a tool designed for efficiently transferring bulk data between
Apache Hadoop and structured datastores such as relational databases. You can use
Sqoop to import data from external structured datastores into Hadoop Distributed
File System or related systems like Hive and HBase. Conversely, Sqoop can be used
to extract data from Hadoop and export it to external structured datastores such
as relational databases and enterprise data warehouses.

== Documentation

Sqoop ships with documentation, please check module "docs" for additional materials.

More documentation is available online on Sqoop home page:

http://sqoop.apache.org/

== Compiling Sqoop

Sqoop uses the Maven build system, and it can be compiled and built running the
following commands:

  mvn compile # Compile project
  mvn package # Build source artifact
  mvn package -Pbinary # Build binary artifact

Sqoop is using Sphinx plugin to generate documentation that have higher memory
requirements that might not fit into default maven configuration. You might need
to increase maximal memory allowance to successfully execute package goal. This
can done using following command:

  export MAVEN_OPTS="-Xmx512m -XX:MaxPermSize=512m"

Sqoop currently supports multiple Hadoop distributions. In order to compile Sqoop
against a specific Hadoop version, please specify the hadoop.profile property in
Maven commands. For example:

  mvn package -Pbinary -Dhadoop.profile=100

Please refer to the Sqoop documentation for a full list of supported Hadoop
distributions and values of the hadoop.profile property.