5
0
mirror of https://github.com/apache/sqoop.git synced 2025-05-06 20:51:31 +08:00
Go to file
Cheolsoo Park 3b5a641eda SQOOP-756: Exclude junit jar from our binary artifact
(Jarek Jarcec Cecho via Cheolsoo Park)
2012-12-12 14:35:10 -08:00
client SQOOP-745: Change "submit" client command to "submission" 2012-12-12 13:44:17 -08:00
common SQOOP-739 Connectors should be versionable 2012-12-07 20:04:46 -08:00
connector SQOOP-739 Connectors should be versionable 2012-12-07 20:04:46 -08:00
core SQOOP-765: JDBC repository is incorrectly checking if job exists in 2012-12-12 13:49:26 -08:00
dist SQOOP-756: Exclude junit jar from our binary artifact 2012-12-12 14:35:10 -08:00
docs SQOOP-758: Generate documentation in package goal 2012-12-12 14:26:36 -08:00
execution SQOOP-738: Sqoop is not importing all data in Sqoop 2 2012-12-11 23:22:36 -08:00
repository SQOOP-739 Connectors should be versionable 2012-12-07 20:04:46 -08:00
server SQOOP-734 Change ConnectorBean to send JSON objects 2012-12-03 17:54:29 -08:00
spi SQOOP-739 Connectors should be versionable 2012-12-07 20:04:46 -08:00
submission SQOOP-746: Mapreduce job should have running with speculative execution 2012-12-12 13:45:50 -08: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-688: Add netbeans files to gitignore and rat 2012-11-08 17:12:18 -08:00
LICENSE.txt move sqoop to TLP 2012-03-28 00:04:41 +00:00
NOTICE.txt move sqoop to TLP 2012-03-28 00:04:41 +00:00
pom.xml SQOOP-733 Remove unnecessary version repetition in pom files 2012-12-03 17:52:45 -08:00
README.txt SQOOP-753: Update top level README file 2012-12-12 14:20:22 -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 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.