5
0
mirror of https://github.com/apache/sqoop.git synced 2025-05-07 03:20:27 +08:00
Go to file
Abraham Elmahrek cbdf965441 SQOOP-2278: Sqoop2: Fix bug for all user could read connector
(Richard Zhou via Abraham Elmahrek)
2015-04-02 12:41:54 -07:00
client SQOOP-2265: Sqoop2: Standardize on methods 2015-03-30 10:33:20 -07:00
common SQOOP-2265: Sqoop2: Standardize on methods 2015-03-30 10:33:20 -07:00
common-test SQOOP-2016: Sqoop2: Create integration test for JDBC to Hive 2015-03-24 17:41:13 -07:00
connector SQOOP-2229: Sqoop2: Kite connector should handle doubles 2015-04-01 08:56:37 -07:00
core SQOOP-2277: Sqoop2: Add annotation for public usage classes in Sqoop Core 2015-04-01 18:07:48 -07:00
dev-support SQOOP-2241: Sqoop2: PreCommit hook is incorrectly counting number of executed tests 2015-03-19 16:29:52 -07:00
dist SQOOP-1998: Sqoop2: Kite Connector: Hive support 2015-03-19 18:24:21 -07:00
docs SQOOP-2094: Sqoop2: Update RESTAPI.rst 2015-03-30 11:29:20 -07:00
execution SQOOP-2235: Sqoop2: Move PrefixContext back to mapreduce execution engine 2015-03-25 15:09:01 -07:00
repository SQOOP-2250: Sqoop2: SQ_LINK_INPUT is missing a foreign key constraint 2015-03-31 11:11:22 -07:00
security SQOOP-2278: Sqoop2: Fix bug for all user could read connector 2015-04-02 12:41:54 -07:00
server SQOOP-2265: Sqoop2: Standardize on methods 2015-03-30 10:33:20 -07:00
shell SQOOP-2268: Sqoop2: Fix a typo in ShowLinkFunction 2015-03-30 18:32:17 -07:00
submission SQOOP-2239: Sqoop2: Remove Repository.updateSubmission() call from Mapreduce submission engine 2015-03-25 15:10:30 -07:00
test SQOOP-2229: Sqoop2: Kite connector should handle doubles 2015-04-01 08:56:37 -07:00
tomcat SQOOP-1950. Sqoop2: Use TestNG 2015-01-08 16:41:18 -08:00
tools SQOOP-2265: Sqoop2: Standardize on methods 2015-03-30 10:33:20 -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-2114: RC2 version of changelog.txt 2015-02-18 09:18:21 -08:00
LICENSE.txt SQOOP-2093: Update License.txt 2015-02-10 11:57:59 -08: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-2016: Sqoop2: Create integration test for JDBC to Hive 2015-03-24 17:41:13 -07: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.