This is an automated email from the ASF dual-hosted git repository.
alexey pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/kudu.git
The following commit(s) were added to refs/heads/master by this push:
new 6ecfe60 [docs] fix typo in parameter description of KuduRestore job
6ecfe60 is described below
commit 6ecfe60518803d3963674bf6172f242b5de54780
Author: Alexey Serbin <[email protected]>
AuthorDate: Tue Oct 29 13:31:15 2019 -0700
[docs] fix typo in parameter description of KuduRestore job
This patch fixes a typo in the description of the <tables> positional
parameter for the KuduRestore Spark job. Also, the description of the
--createTables option added since it's already referred by the
description of the --tableSuffix option.
Change-Id: I0bdc32d8817da8d57e42211603915595d20b4486
Reviewed-on: http://gerrit.cloudera.org:8080/14574
Tested-by: Kudu Jenkins
Reviewed-by: Adar Dembo <[email protected]>
---
docs/administration.adoc | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/docs/administration.adoc b/docs/administration.adoc
index 2b3e237..dba50e0 100644
--- a/docs/administration.adoc
+++ b/docs/administration.adoc
@@ -334,12 +334,14 @@ The common flags that will be used when restoring are:
* `--rootPath`: The root path to the backup data. Accepts any Spark-compatible
path.
** See <<backup_directory>> for the directory structure used in the `rootPath`.
-* `--kuduMasterAddresses`: Comma-separated addresses of Kudu masters. Default:
localhost
+* `--kuduMasterAddresses`: Comma-separated addresses of Kudu masters. Default:
`localhost`
+* `--createTables`: If set to `true`, the restore process creates the tables.
+ Set to `false` if the target tables already exist. Default: `true`.
* `--tableSuffix`: If set, the suffix to add to the restored table names.
- Only used when createTables is true.
+ Only used when `createTables` is `true`.
* `--timestampMs`: A UNIX timestamp in milliseconds that defines the latest
time
to use when selecting restore candidates. Default:
`System.currentTimeMillis()`
-* `<table>...`: A list of tables to be backed up.
+* `<table>...`: A list of tables to restore.
Note: You can see the full list of job options at anytime by passing the
`--help` flag.