Mirror of Apache Sqoop
Перейти к файлу
Hari Shreedharan 2404393160 SQOOP-1202. Update Changelog for Sqoop 1.99.3 release
(Mengwei Ding via Hari Shreedharan)
2013-10-11 21:36:43 -07:00
client SQOOP-1200. Sqoop2: 1.99.3 Pom files version change on release branch. 2013-09-13 19:16:53 -07:00
common SQOOP-1200. Sqoop2: 1.99.3 Pom files version change on release branch. 2013-09-13 19:16:53 -07:00
connector SQOOP-1200. Sqoop2: 1.99.3 Pom files version change on release branch. 2013-09-13 19:16:53 -07:00
core SQOOP-1200. Sqoop2: 1.99.3 Pom files version change on release branch. 2013-09-13 19:16:53 -07:00
dev-support SQOOP-1110. Sqoop2: Precommit: Add routine to detect if patch touch test 2013-08-30 21:47:33 -07:00
dist SQOOP-1200. Sqoop2: 1.99.3 Pom files version change on release branch. 2013-09-13 19:16:53 -07:00
docs SQOOP-1205. Sqoop2: Provide upgrade guide for end users 2013-09-28 16:00:43 -07:00
execution SQOOP-1210: Exporting data with malformed records causes sqoop2 jobs to hang until killed or they timeout 2013-10-02 09:40:38 -07:00
repository SQOOP-1200. Sqoop2: 1.99.3 Pom files version change on release branch. 2013-09-13 19:16:53 -07:00
server SQOOP-1200. Sqoop2: 1.99.3 Pom files version change on release branch. 2013-09-13 19:16:53 -07:00
shell SQOOP-1200. Sqoop2: 1.99.3 Pom files version change on release branch. 2013-09-13 19:16:53 -07:00
spi SQOOP-1200. Sqoop2: 1.99.3 Pom files version change on release branch. 2013-09-13 19:16:53 -07:00
submission SQOOP-1200. Sqoop2: 1.99.3 Pom files version change on release branch. 2013-09-13 19:16:53 -07:00
test SQOOP-1200. Sqoop2: 1.99.3 Pom files version change on release branch. 2013-09-13 19:16:53 -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 SQOOP-1202. Update Changelog for Sqoop 1.99.3 release 2013-10-11 21:36:43 -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
README.txt SQOOP-772: OutOfMemory from document generation 2012-12-17 13:24:28 -08:00
pom.xml SQOOP-1200. Sqoop2: 1.99.3 Pom files version change on release branch. 2013-09-13 19:16:53 -07: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.