Repository: sqoop Updated Branches: refs/heads/trunk 7808c6bc3 -> c8f9beec1
SQOOP-2884: Document --temporary-rootdir (Markus Kemper via Kate Ting) Project: http://git-wip-us.apache.org/repos/asf/sqoop/repo Commit: http://git-wip-us.apache.org/repos/asf/sqoop/commit/c8f9beec Tree: http://git-wip-us.apache.org/repos/asf/sqoop/tree/c8f9beec Diff: http://git-wip-us.apache.org/repos/asf/sqoop/diff/c8f9beec Branch: refs/heads/trunk Commit: c8f9beec1d15df76e44ae99107a631454fb80d86 Parents: 7808c6b Author: Kate Ting <[email protected]> Authored: Tue Aug 9 17:46:40 2016 -0700 Committer: Kate Ting <[email protected]> Committed: Tue Aug 9 17:46:40 2016 -0700 ---------------------------------------------------------------------- src/docs/man/import-args.txt | 5 +++++ src/docs/user/import.txt | 1 + 2 files changed, 6 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/sqoop/blob/c8f9beec/src/docs/man/import-args.txt ---------------------------------------------------------------------- diff --git a/src/docs/man/import-args.txt b/src/docs/man/import-args.txt index 49855ce..436ab2c 100644 --- a/src/docs/man/import-args.txt +++ b/src/docs/man/import-args.txt @@ -49,6 +49,11 @@ include::import-common-args.txt[] --table (table-name):: The table to import +--temporary-rootdir (path):: + Set location of temporary directory for files created during import (overrides default path "_sqoop") + This option only applies to the "import" command with "--append" or "--incremental lastmodified" + This option has the same affect as using -Dsqoop.test.import.rootDir=<path> + --where (clause):: Import only the rows for which _clause_ is true. e.g.: `--where "user_id > 400 AND hidden == 0"` http://git-wip-us.apache.org/repos/asf/sqoop/blob/c8f9beec/src/docs/user/import.txt ---------------------------------------------------------------------- diff --git a/src/docs/user/import.txt b/src/docs/user/import.txt index fbb32f5..330d544 100644 --- a/src/docs/user/import.txt +++ b/src/docs/user/import.txt @@ -82,6 +82,7 @@ Argument Description +--split-by <col>+ option. +\--table <table-name>+ Table to read +\--target-dir <dir>+ HDFS destination dir ++\--temporary-rootdir <dir>+ HDFS directory for temporary files created during import (overrides default "_sqoop") +\--warehouse-dir <dir>+ HDFS parent for table destination +\--where <where clause>+ WHERE clause to use during import +-z,\--compress+ Enable compression
