Repository: sqoop Updated Branches: refs/heads/trunk 8c15e07cd -> 9497a83b3
SQOOP-1408: Document SQL Server's --non-resilient arg (Keegan Witt via Jarek Jarcec Cecho) Project: http://git-wip-us.apache.org/repos/asf/sqoop/repo Commit: http://git-wip-us.apache.org/repos/asf/sqoop/commit/9497a83b Tree: http://git-wip-us.apache.org/repos/asf/sqoop/tree/9497a83b Diff: http://git-wip-us.apache.org/repos/asf/sqoop/diff/9497a83b Branch: refs/heads/trunk Commit: 9497a83b38886807e1562886d6fbc657fdc858b2 Parents: 8c15e07 Author: Jarek Jarcec Cecho <[email protected]> Authored: Wed Jul 30 09:45:18 2014 -0700 Committer: Jarek Jarcec Cecho <[email protected]> Committed: Wed Jul 30 09:45:18 2014 -0700 ---------------------------------------------------------------------- src/docs/user/connectors.txt | 12 ++++++++++++ 1 file changed, 12 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/sqoop/blob/9497a83b/src/docs/user/connectors.txt ---------------------------------------------------------------------- diff --git a/src/docs/user/connectors.txt b/src/docs/user/connectors.txt index 062201d..bba946a 100644 --- a/src/docs/user/connectors.txt +++ b/src/docs/user/connectors.txt @@ -125,12 +125,24 @@ List of all extra arguments supported by Microsoft SQL Connector is shown below: `----------------------------------------`--------------------------------------- Argument Description --------------------------------------------------------------------------------- ++\--non-resilient+ Don't attempt to recover failed \ + export operations. +\--schema <name>+ Scheme name that sqoop should use. \ Default is "dbo". +\--table-hints <hints>+ Table hints that Sqoop should use for \ data movement. --------------------------------------------------------------------------------- +Non-resilient operations +^^^^^^^^^^^^^^^^^^^^^^^^ + +You can override the default and not use resilient operations during export. +This will avoid retrying failed operations. For example: + +---- +$ sqoop export ... --export-dir custom_dir --table custom_table -- --non-resilient +---- + Schema support ^^^^^^^^^^^^^^
