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/08 17:26:33 UTC

[hbase] branch master 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 master
in repository https://gitbox.apache.org/repos/asf/hbase.git


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

commit 8b989fdfa192f5ac281ae749b9185c402a2e3fb4
Author: Wellington Chevreuil <wc...@apache.com>
AuthorDate: Sat Jun 8 14:42: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 9cbe3d3..2f139dd 100644
--- a/src/main/asciidoc/_chapters/ops_mgt.adoc
+++ b/src/main/asciidoc/_chapters/ops_mgt.adoc
@@ -628,6 +628,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]
 ====