mirror of
https://github.com/apache/sqoop.git
synced 2025-05-03 15:32:52 +08:00
![]() The SqoopRecord.toString() and SqoopRecord.toString(DelimiterSet) methods always append an end-of-record delimiter. Sqoop uses its own OutputFormat when rendering these to text files, so that the user's delimiters are preserved. Other users could use this OutputFormat when working with SqoopRecord instances in their own MapReduce code, but it would also be nice to "play nice" with TextOutputFormat in the event that the intent is newline-terminated records. This patch allows users to suppress end-of-record delimiter generation when formatting records with toString. (Aaron Kimball via Arvind Prabhakar) From: Arvind Prabhakar <arvind@cloudera.com> git-svn-id: https://svn.apache.org/repos/asf/incubator/sqoop/trunk@1150025 13f79535-47bb-0310-9956-ffa450edef68 |
||
---|---|---|
bin | ||
conf | ||
ivy | ||
lib | ||
src | ||
testdata/hive | ||
.gitignore | ||
build.xml | ||
COMPILING.txt | ||
ivy.xml | ||
LICENSE.txt | ||
NOTICE.txt | ||
README.txt | ||
svn-placeholder |
= Welcome to Sqoop! This is the Sqoop (SQL-to-Hadoop) tool. Sqoop allows easy imports and exports of data sets between databases and HDFS. == More Documentation Sqoop ships with additional documentation: a user guide and a manual page. Asciidoc sources for both of these are in +src/docs/+. Run +ant docs+ to build the documentation. It will be created in +build/docs/+. If you got Sqoop in release form, documentation will already be built and available in the +docs/+ directory. == Compiling Sqoop Compiling Sqoop requires the following tools: * Apache ant (1.7.1) * Java JDK 1.6 Additionally, building the documentation requires these tools: * asciidoc * make * python 2.5+ * xmlto * tar * gzip To compile Sqoop, run +ant package+. There will be a fully self-hosted build provided in the +build/sqoop-(version)/+ directory. You can build just the jar by running +ant jar+. See the COMPILING.txt document for for information. == This is also an Asciidoc file! * Try running +asciidoc README.txt+ * For more information about asciidoc, see http://www.methods.co.nz/asciidoc/