You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by wc...@apache.org on 2019/06/17 09:59:34 UTC

[hbase] branch branch-1 updated: HBASE-22495 Update SyncTable section, explaining from which specific minor versions doDeletes/doPuts is available

This is an automated email from the ASF dual-hosted git repository.

wchevreuil pushed a commit to branch branch-1
in repository https://gitbox.apache.org/repos/asf/hbase.git


The following commit(s) were added to refs/heads/branch-1 by this push:
     new 9472d6e  HBASE-22495 Update SyncTable section, explaining from which specific minor versions doDeletes/doPuts is available
9472d6e is described below

commit 9472d6e968d2cd43abedffdcf693eab53b1cbd90
Author: Wellington Chevreuil <wc...@apache.org>
AuthorDate: Mon Jun 17 10:59:12 2019 +0100

    HBASE-22495 Update SyncTable section, explaining from which specific minor versions doDeletes/doPuts is available
---
 src/main/asciidoc/_chapters/ops_mgt.adoc | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/src/main/asciidoc/_chapters/ops_mgt.adoc b/src/main/asciidoc/_chapters/ops_mgt.adoc
index 1bb8946..0193d63 100644
--- a/src/main/asciidoc/_chapters/ops_mgt.adoc
+++ b/src/main/asciidoc/_chapters/ops_mgt.adoc
@@ -533,6 +533,16 @@ Setting doDeletes to false modifies default behaviour to not delete target cells
 Similarly, setting doPuts to false modifies default behaviour to not add missing cells on target. Setting both doDeletes
 and doPuts to false would give same effect as setting dryrun to true.
 
+.Additional info on doDeletes/doPuts
+[NOTE]
+====
+"doDeletes/doPuts" were only added by
+link:https://jira.apache.org/jira/browse/HBASE-20305[HBASE-20305], so these may not be available on
+all released versions.
+For major 1.x versions, minimum minor release including it is *1.4.10*.
+For major 2.x versions, minimum minor release including it is *2.1.5*.
+====
+
 .Set doDeletes to false on Two-Way Replication scenarios
 [NOTE]
 ====