5
0
mirror of https://github.com/apache/sqoop.git synced 2025-05-05 07:19:27 +08:00
Go to file
Jarek Jarcec Cecho c173f6a52a SQOOP-2631: Sqoop2: Add tests for shell commands in interactive mode
(Dian Fu via Jarek Jarcec Cecho)
2015-11-05 09:56:57 -08:00
client SQOOP-2630: Sqoop2: Provide tests for all SqoopCommand 2015-10-22 07:46:45 -07:00
common SQOOP-1690: Implement doAs for Sqoop2 2015-10-27 09:26:59 -07:00
common-test SQOOP-2625: Sqoop2: Fix test case failure for repository-mysql 2015-10-27 10:17:01 -07:00
connector SQOOP-2595: Add Oracle connector to Sqoop 2 2015-11-05 09:40:31 -08:00
core SQOOP-2645: Sqoop2: Ensure that classpath loading integration tests are run by default 2015-10-30 08:01:34 -07:00
dev-support SQOOP-2498: Sqoop2: Precommit: Fix formatting typo 2015-08-17 16:40:31 -07:00
dist SQOOP-2629: Sqoop2: Add ability to "blacklist" connectors 2015-10-27 20:14:19 -07:00
docs SQOOP-1732: Sqoop2: Add version to connector upgrade API 2015-10-14 14:55:55 -07:00
execution SQOOP-1690: Implement doAs for Sqoop2 2015-10-27 09:26:59 -07:00
repository SQOOP-2629: Sqoop2: Add ability to "blacklist" connectors 2015-10-27 20:14:19 -07:00
security SQOOP-2537: Sqoop2: Use object name instead of object id for the name filed in MResource 2015-09-09 15:41:57 +02:00
server SQOOP-2595: Add Oracle connector to Sqoop 2 2015-11-05 09:40:31 -08:00
shell SQOOP-2631: Sqoop2: Add tests for shell commands in interactive mode 2015-11-05 09:56:57 -08:00
submission SQOOP-2527: Sqoop2: findbugs: Fix warning in submission module 2015-08-26 16:28:32 -07:00
test SQOOP-2656: Sqoop2: NPE will happen in connector-loading-tests when do the slow integration test 2015-11-04 07:58:01 -08:00
tools SQOOP-1732: Sqoop2: Add version to connector upgrade API 2015-10-14 14:55:55 -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-1339: Synchronize .gitignore files 2014-06-24 09:05:20 -07:00
CHANGELOG.txt SQOOP-2336: Update change log with 1.99.6 release for RC-2 2015-04-28 19:36:19 -07:00
LICENSE.txt SQOOP-2304: Update license file 2015-04-17 01:12:09 -07: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-2595: Add Oracle connector to Sqoop 2 2015-11-05 09:40:31 -08: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.