You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by st...@apache.org on 2018/08/29 03:34:34 UTC

hbase git commit: HBASE-21054 Copy down docs, amend to suite branch-2.0, and then commit; REFRESH COPY FROM MASTER BRANCH

Repository: hbase
Updated Branches:
  refs/heads/branch-2.0 b0022b139 -> 36519384d


HBASE-21054 Copy down docs, amend to suite branch-2.0, and then commit; REFRESH COPY FROM MASTER BRANCH


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/36519384
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/36519384
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/36519384

Branch: refs/heads/branch-2.0
Commit: 36519384dc12aa740a1e2b6228970229ce40b080
Parents: b0022b1
Author: Michael Stack <st...@apache.org>
Authored: Tue Aug 28 20:34:21 2018 -0700
Committer: Michael Stack <st...@apache.org>
Committed: Tue Aug 28 20:34:21 2018 -0700

----------------------------------------------------------------------
 src/main/asciidoc/_chapters/ops_mgt.adoc | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/36519384/src/main/asciidoc/_chapters/ops_mgt.adoc
----------------------------------------------------------------------
diff --git a/src/main/asciidoc/_chapters/ops_mgt.adoc b/src/main/asciidoc/_chapters/ops_mgt.adoc
index feccb5d..a4ce83a 100644
--- a/src/main/asciidoc/_chapters/ops_mgt.adoc
+++ b/src/main/asciidoc/_chapters/ops_mgt.adoc
@@ -1610,6 +1610,9 @@ Some use cases for cluster replication include:
 NOTE: Replication is enabled at the granularity of the column family.
 Before enabling replication for a column family, create the table and all column families to be replicated, on the destination cluster.
 
+NOTE: Replication is asynchronous as we send WAL to another cluster in background, which means that when you want to do recovery through replication, you could loss some data. To address this problem, we have introduced a new feature called synchronous replication. As the mechanism is a bit different so we use a separated section to describe it. Please see
+<<Synchronous Replication,Synchronous Replication>>.
+
 === Replication Overview
 
 Cluster replication uses a source-push methodology.
@@ -1637,7 +1640,7 @@ How your application builds on top of the HBase API matters when replication is
 
 The combination of these two properties (at-least-once delivery and the lack of message ordering) means that some destination clusters may end up in a different state if your application makes use of operations that are not idempotent, e.g. Increments.
 
-To solve the problem, HBase now supports serial replication -- but only versions 2.1.0 and later, not in this version of hbase -- which sends edits to destination cluster as the order of requests from client.
+To solve the problem, HBase now supports serial replication, which sends edits to destination cluster as the order of requests from client. It is available in hbase-2.1.x, not in this version (hbase-2.0.x).
 
 ====