5
0
mirror of https://github.com/apache/sqoop.git synced 2025-05-02 23:52:15 +08:00
Go to file
2018-11-09 12:12:00 +01:00
assemblies SQOOP-2634: Sqoop2: Provide classpath isolation for connectors and its dependencies 2015-12-23 11:21:15 +01:00
client SQOOP-1531: Sqoop2: Support getting connectors by Direction 2016-05-26 23:07:37 -07:00
common SQOOP-2867: Sqoop2: ResTiliency: Define one single constant for all 2016-05-24 19:09:13 -07:00
common-test SQOOP-2889: Read and write from encrypted repository 2016-03-29 14:13:47 -07:00
connector SQOOP-2941: Sqoop2: Provide option to re-create target directory if it exists in HDFS connector 2016-12-06 11:30:09 -08:00
core SQOOP-2914: Sqoop2: Support using password generators for repository passwords 2016-05-24 15:00:03 -07:00
dev-support SQOOP-2805: Sqoop2: Detect if both fixVersion and affectedVersions are empty and report it 2016-02-04 12:04:32 +08:00
dist SQOOP-2890: Provide tooling to encrypt non-encrypted repository and rotate keys 2016-04-11 13:20:57 -07:00
docs SQOOP-2923: Sqoop2: Reword documentation to make it clear that the api endpoints fall under /sqoop 2016-05-18 11:52:07 -07:00
execution SQOOP-1916: Sqoop2: Yarn child leaking in integration tests 2016-03-14 19:49:18 -07:00
repository SQOOP-2900: Support encrypting map inputs with sensitive fields 2016-04-18 13:59:27 -07:00
security SQOOP-2739: Sqoop2: Use resource name instead of resource id in authorization engine 2015-12-18 08:14:17 +01:00
server SQOOP-2867: Sqoop2: ResTiliency: Define one single constant for all 2016-05-24 19:09:13 -07:00
shell SQOOP-1531: Sqoop2: Support getting connectors by Direction 2016-05-26 23:07:37 -07:00
submission SQOOP-2802: Sqoop2: Logging level should be debug for integration tests 2016-01-29 12:52:02 -08:00
test SQOOP-2941: Sqoop2: Provide option to re-create target directory if it exists in HDFS connector 2016-12-06 11:30:09 -08:00
tools SQOOP-2900: Support encrypting map inputs with sensitive fields 2016-04-18 13:59:27 -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-2956: Update change log with 1.99.7 release 2016-07-08 14:54:53 -07:00
LICENSE.txt SQOOP-2963: Update license file 2016-07-08 14:57:10 -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-3403: Sqoop2: Add Fero Szabo to committer list in our pom file 2018-11-09 12:12:00 +01: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.