From 5ba8899651e361e3ecf85c5cd7b7ff9cba84a9fe Mon Sep 17 00:00:00 2001 From: Wellington Chevreuil Date: Thu, 31 Jan 2019 11:48:10 -0800 Subject: [PATCH] HBASE-21462 - Add note for CopyTable section explained it does not perform a diff, but a full write from source to target Change-Id: I9556a60d4c96f56bdfeb40e41991bdf2e0429fa6 --- src/main/asciidoc/_chapters/ops_mgt.adoc | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/main/asciidoc/_chapters/ops_mgt.adoc b/src/main/asciidoc/_chapters/ops_mgt.adoc index db85b45c62..0371c5d3a7 100644 --- a/src/main/asciidoc/_chapters/ops_mgt.adoc +++ b/src/main/asciidoc/_chapters/ops_mgt.adoc @@ -528,6 +528,13 @@ Caching for the input Scan is configured via `hbase.client.scanner.caching` By default, CopyTable utility only copies the latest version of row cells unless `--versions=n` is explicitly specified in the command. ==== +.Data Load +[NOTE] +==== +CopyTable does not perform a diff, it copies all Cells in between the specified startrow/stoprow starttime/endtime range. +This means that already existing cells with same values will still be copied. +==== + See Jonathan Hsieh's link:https://blog.cloudera.com/blog/2012/06/online-hbase-backups-with-copytable-2/[Online HBase Backups with CopyTable] blog post for more on `CopyTable`. -- 2.17.2 (Apple Git-113)