From 34069fb794be5406749b251c14357fb5917bc06a Mon Sep 17 00:00:00 2001 From: Avi Aryan Date: Wed, 5 Jul 2017 08:50:05 +0530 Subject: [PATCH] add input params in import docs --- docs/appbase/import.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/docs/appbase/import.md b/docs/appbase/import.md index fa0eebd..4e9ad10 100644 --- a/docs/appbase/import.md +++ b/docs/appbase/import.md @@ -13,6 +13,19 @@ To view the complete list of input parameters supported, use - abc import --help ``` +At the time of writing, the list of parameters supported looks like - + +``` +--log.level="info" Only log messages with the given severity or above. Valid levels: [debug, info, error] +--replication-slot=standby_replication_slot [postgres] replication slot to use +--src.filter=.* Namespace filter for source +--src.type=postgres type of source database +--src.uri=http://user:pass@host:port/db url of source database +--tail=false allow tail feature +--timeout=10s source timeout +--typename=mytype [csv] typeName to use +``` + Note that you only need to set the parameters that are required for the source database type. For example, you don't set `replication_slot` when taking CSV as the source. -- GitLab