5
0
mirror of https://github.com/apache/sqoop.git synced 2025-05-06 13:32:37 +08:00
Go to file
Hari Shreedharan 20bbef04c4 SQOOP-1105. Sqoop2: Remove our implementation of StringUtils
(Raghav Kumar Gautam via Hari Shreedharan)
2013-07-12 16:29:52 -07:00
client SQOOP-1105. Sqoop2: Remove our implementation of StringUtils 2013-07-12 16:29:52 -07:00
common SQOOP-1105. Sqoop2: Remove our implementation of StringUtils 2013-07-12 16:29:52 -07:00
connector SQOOP-672: Unify logger usage across entire code base 2013-07-11 17:28:44 -07:00
core SQOOP-672: Unify logger usage across entire code base 2013-07-11 17:28:44 -07:00
dev-support SQOOP-1104. Sqoop2: Allow versioned patches in the PreCommit hook 2013-06-25 16:24:53 -07:00
dist SQOOP-997: Sqoop2: Upgrade: Provide ability to disable the automatic upgrade 2013-07-02 12:54:44 -07:00
docs SQOOP-1001: Sqoop2: Document methods for overriding server port 2013-07-11 16:30:38 -07:00
execution SQOOP-672: Unify logger usage across entire code base 2013-07-11 17:28:44 -07:00
repository SQOOP-1105. Sqoop2: Remove our implementation of StringUtils 2013-07-12 16:29:52 -07:00
server SQOOP-672: Unify logger usage across entire code base 2013-07-11 17:28:44 -07:00
spi SQOOP-1073: Sqoop2: Introduce schema for transferred data 2013-06-30 21:05:50 -07:00
submission SQOOP-1121. Sqoop2: Serialize schema and make them available in the MR job. 2013-07-10 10:57:54 -07:00
test SQOOP-1115. Sqoop2: Integration: Provide helper methods for synchronous job submission 2013-07-11 18:23:51 -07: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-1082: Implement pre-commit testing with Jenkins 2013-06-23 18:30:31 -04:00
CHANGELOG.txt Updating CHANGELOG.txt files with recent fixes 2013-04-15 18:55:12 -07:00
LICENSE.txt SQOOP-786: Include jars from WAR archive in LICENSE.txt file 2012-12-17 14:07:23 -08:00
NOTICE.txt SQOOP-1005: Sqoop2: Update year in the notice file to 2013 2013-06-15 15:15:59 -04:00
pom.xml SQOOP-1123: Sqoop2: Add eclipse project metadata folder excluded from maven 2013-07-03 15:49:39 -07:00
README.txt SQOOP-772: OutOfMemory from document generation 2012-12-17 13:24:28 -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.