5
0
mirror of https://github.com/apache/sqoop.git synced 2025-05-06 20:19:59 +08:00
Go to file
2015-08-12 13:01:28 -07:00
client SQOOP-2451: Sqoop2: Findbugs: Add explicit charset to client ResourceRequest class 2015-08-04 22:15:53 +08:00
common SQOOP-2449: Sqoop2: Findbugs: Fix smaller-ish warnings in common module 2015-08-12 12:50:06 -07:00
common-test SQOOP-2414: Sqoop2: Change JUnit Assert class to TestNG Assert class 2015-07-13 07:41:54 -07:00
connector SQOOP-2442: Sqoop2: Generic JDBC: Drop tests for specifying schema name and custom SQL at the same time 2015-08-12 13:01:28 -07:00
core SQOOP-2446: Sqoop2: Fix incorrect notification URL for execution engine 2015-08-10 13:36:51 -07:00
dev-support SQOOP-2450: Sqoop2: Precommit: Introduce findbugs checks 2015-08-12 09:42:06 -07:00
dist SQOOP-2384: SQOOP2: Remove source code from binary distribution 2015-07-22 15:16:08 -07:00
docs SQOOP-2432: Sqoop2: Update maven-site-plugin for in root pom.xml 2015-07-27 13:30:34 -07:00
execution SQOOP-2414: Sqoop2: Change JUnit Assert class to TestNG Assert class 2015-07-13 07:41:54 -07:00
repository SQOOP-2414: Sqoop2: Change JUnit Assert class to TestNG Assert class 2015-07-13 07:41:54 -07:00
security SQOOP-2383: SQOOP2: Add do user support in authorization engine 2015-07-10 09:18:44 -07:00
server SQOOP-2446: Sqoop2: Fix incorrect notification URL for execution engine 2015-08-10 13:36:51 -07:00
shell SQOOP-1965: Sqoop2: Naming support for Connector, Link, Job instances 2015-06-22 11:27:20 +02:00
submission SQOOP-2285: Sqoop2: Change POM version back to 2.0.0 2015-04-06 15:32:11 -07:00
test SQOOP-2244: Sqoop2: Generic JDBC: Automatically escape table and column names from configuration objects 2015-08-10 13:44:17 -07:00
tomcat SQOOP-2285: Sqoop2: Change POM version back to 2.0.0 2015-04-06 15:32:11 -07:00
tools SQOOP-1256: Sqoop2: Tool: Load repository dump into a different repository 2015-07-29 23:32:58 -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-2454: Drop JDK6 support 2015-08-05 10:16:54 +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.