Mirror of Apache Sqoop
Перейти к файлу
Abraham 2475a76ef7 SQOOP-1739: Release notes for rc1
(Gwen Shapira via Abraham Elmahrek)
2014-11-15 14:53:34 -08:00
client SQOOP-1611: Update POM version on new 1.99.4 branch 2014-11-08 09:37:35 -08:00
common SQOOP-1724: Sqoop2: Support old config types for backward compatibility in connector data upgrade 2014-11-13 12:21:47 -08:00
connector SQOOP-1731: Sqoop2: Generic JDBC upgrade from 1.99.3 to 1.99.4 2014-11-14 06:27:46 -08:00
core SQOOP-1736: Sqoop2: Driver missing during upgrade 2014-11-14 17:20:05 -08:00
dev-support SQOOP-1427: Sqoop2: Add support for branch SQOOP-1367 to pre-commit build 2014-08-11 15:05:35 -07:00
dist SQOOP-1611: Update POM version on new 1.99.4 branch 2014-11-08 09:37:35 -08:00
docs SQOOP-1718: Sqoop2: CommandLineClient doc error 2014-11-13 07:48:19 -08:00
execution SQOOP-1696: Sqoop2: TestMapReduce.testOutputFormat is failing on Hadoop 1 profile 2014-11-08 23:43:40 -08:00
repository SQOOP-1736: Sqoop2: Driver missing during upgrade 2014-11-14 17:20:05 -08:00
server SQOOP-1611: Update POM version on new 1.99.4 branch 2014-11-08 09:37:35 -08:00
shell SQOOP-1611: Update POM version on new 1.99.4 branch 2014-11-08 09:37:35 -08:00
spi SQOOP-1611: Update POM version on new 1.99.4 branch 2014-11-08 09:37:35 -08:00
submission SQOOP-1611: Update POM version on new 1.99.4 branch 2014-11-08 09:37:35 -08:00
test SQOOP-1611: Update POM version on new 1.99.4 branch 2014-11-08 09:37:35 -08:00
tomcat SQOOP-1611: Update POM version on new 1.99.4 branch 2014-11-08 09:37:35 -08:00
tools SQOOP-1736: Sqoop2: Driver missing during upgrade 2014-11-14 17:20:05 -08:00
.gitattributes
.gitignore
CHANGELOG.txt SQOOP-1739: Release notes for rc1 2014-11-15 14:53:34 -08:00
LICENSE.txt
NOTICE.txt
README.txt
pom.xml SQOOP-1611: Update POM version on new 1.99.4 branch 2014-11-08 09:37:35 -08:00

README.txt

= 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.