You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by ap...@apache.org on 2017/03/31 23:32:11 UTC

[1/5] hbase git commit: HBASE-17698 ReplicationEndpoint choosing sinks

Repository: hbase
Updated Branches:
  refs/heads/branch-1 cc700ef4c -> 19e4e4d49
  refs/heads/branch-1.1 1fdb97ce8 -> 575a8c909
  refs/heads/branch-1.2 2d79b7d5a -> cd583383b
  refs/heads/branch-1.3 36da029ed -> ea3907da7
  refs/heads/master 1c4d9c896 -> 80381f394


HBASE-17698 ReplicationEndpoint choosing sinks

Signed-off-by: Andrew Purtell <ap...@apache.org>


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

Branch: refs/heads/master
Commit: 80381f39446bab131f5b1f227c98bad97545c4c8
Parents: 1c4d9c8
Author: Karan Mehta <k....@kmehta-ltm1.internal.salesforce.com>
Authored: Mon Mar 6 15:56:24 2017 -0800
Committer: Andrew Purtell <ap...@apache.org>
Committed: Fri Mar 31 16:12:10 2017 -0700

----------------------------------------------------------------------
 .../regionserver/HBaseInterClusterReplicationEndpoint.java       | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/80381f39/hbase-server/src/main/java/org/apache/hadoop/hbase/replication/regionserver/HBaseInterClusterReplicationEndpoint.java
----------------------------------------------------------------------
diff --git a/hbase-server/src/main/java/org/apache/hadoop/hbase/replication/regionserver/HBaseInterClusterReplicationEndpoint.java b/hbase-server/src/main/java/org/apache/hadoop/hbase/replication/regionserver/HBaseInterClusterReplicationEndpoint.java
index ba12d53..97f28b4 100644
--- a/hbase-server/src/main/java/org/apache/hadoop/hbase/replication/regionserver/HBaseInterClusterReplicationEndpoint.java
+++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/replication/regionserver/HBaseInterClusterReplicationEndpoint.java
@@ -294,8 +294,8 @@ public class HBaseInterClusterReplicationEndpoint extends HBaseReplicationEndpoi
                 + "Replication cannot proceed without losing data.", sleepMultiplier)) {
               sleepMultiplier++;
             }
-          } else if (ioe instanceof SaslException) {
-            LOG.warn("Peer encountered SaslException, rechecking all sinks: ", ioe);
+          } else {
+            LOG.warn("Peer encountered RemoteException, rechecking all sinks: ", ioe);
             replicationSinkMgr.chooseSinks();
           }
         } else {


[5/5] hbase git commit: HBASE-17698 ReplicationEndpoint choosing sinks

Posted by ap...@apache.org.
HBASE-17698 ReplicationEndpoint choosing sinks

Signed-off-by: Andrew Purtell <ap...@apache.org>


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

Branch: refs/heads/branch-1.1
Commit: 575a8c909be5a3e032a8fc757f7224b234ce7307
Parents: 1fdb97c
Author: Karan Mehta <k....@kmehta-ltm1.internal.salesforce.com>
Authored: Mon Mar 6 15:56:24 2017 -0800
Committer: Andrew Purtell <ap...@apache.org>
Committed: Fri Mar 31 16:31:42 2017 -0700

----------------------------------------------------------------------
 .../regionserver/HBaseInterClusterReplicationEndpoint.java       | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/575a8c90/hbase-server/src/main/java/org/apache/hadoop/hbase/replication/regionserver/HBaseInterClusterReplicationEndpoint.java
----------------------------------------------------------------------
diff --git a/hbase-server/src/main/java/org/apache/hadoop/hbase/replication/regionserver/HBaseInterClusterReplicationEndpoint.java b/hbase-server/src/main/java/org/apache/hadoop/hbase/replication/regionserver/HBaseInterClusterReplicationEndpoint.java
index d36a1e8..188fa92 100644
--- a/hbase-server/src/main/java/org/apache/hadoop/hbase/replication/regionserver/HBaseInterClusterReplicationEndpoint.java
+++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/replication/regionserver/HBaseInterClusterReplicationEndpoint.java
@@ -178,8 +178,8 @@ public class HBaseInterClusterReplicationEndpoint extends HBaseReplicationEndpoi
                 + "Replication cannot proceed without losing data.", sleepMultiplier)) {
               sleepMultiplier++;
             }
-          } else if (ioe instanceof SaslException) {
-            LOG.warn("Peer encountered SaslException, rechecking all sinks: ", ioe);
+          } else {
+            LOG.warn("Peer encountered RemoteException, rechecking all sinks: ", ioe);
             replicationSinkMgr.chooseSinks();
           }
         } else {


[2/5] hbase git commit: HBASE-17698 ReplicationEndpoint choosing sinks

Posted by ap...@apache.org.
HBASE-17698 ReplicationEndpoint choosing sinks

Signed-off-by: Andrew Purtell <ap...@apache.org>


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

Branch: refs/heads/branch-1
Commit: 19e4e4d49a332aa653e7fa7a8267d0bc14788709
Parents: cc700ef
Author: Karan Mehta <k....@kmehta-ltm1.internal.salesforce.com>
Authored: Mon Mar 6 15:56:24 2017 -0800
Committer: Andrew Purtell <ap...@apache.org>
Committed: Fri Mar 31 16:31:29 2017 -0700

----------------------------------------------------------------------
 .../regionserver/HBaseInterClusterReplicationEndpoint.java       | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/19e4e4d4/hbase-server/src/main/java/org/apache/hadoop/hbase/replication/regionserver/HBaseInterClusterReplicationEndpoint.java
----------------------------------------------------------------------
diff --git a/hbase-server/src/main/java/org/apache/hadoop/hbase/replication/regionserver/HBaseInterClusterReplicationEndpoint.java b/hbase-server/src/main/java/org/apache/hadoop/hbase/replication/regionserver/HBaseInterClusterReplicationEndpoint.java
index be4fc7b..0acb33a 100644
--- a/hbase-server/src/main/java/org/apache/hadoop/hbase/replication/regionserver/HBaseInterClusterReplicationEndpoint.java
+++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/replication/regionserver/HBaseInterClusterReplicationEndpoint.java
@@ -294,8 +294,8 @@ public class HBaseInterClusterReplicationEndpoint extends HBaseReplicationEndpoi
                 + "Replication cannot proceed without losing data.", sleepMultiplier)) {
               sleepMultiplier++;
             }
-          } else if (ioe instanceof SaslException) {
-            LOG.warn("Peer encountered SaslException, rechecking all sinks: ", ioe);
+          } else {
+            LOG.warn("Peer encountered RemoteException, rechecking all sinks: ", ioe);
             replicationSinkMgr.chooseSinks();
           }
         } else {


[3/5] hbase git commit: HBASE-17698 ReplicationEndpoint choosing sinks

Posted by ap...@apache.org.
HBASE-17698 ReplicationEndpoint choosing sinks

Signed-off-by: Andrew Purtell <ap...@apache.org>


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

Branch: refs/heads/branch-1.3
Commit: ea3907da7ba2fd8e9b86e0aee4c2198c8611faf2
Parents: 36da029
Author: Karan Mehta <k....@kmehta-ltm1.internal.salesforce.com>
Authored: Mon Mar 6 15:56:24 2017 -0800
Committer: Andrew Purtell <ap...@apache.org>
Committed: Fri Mar 31 16:31:34 2017 -0700

----------------------------------------------------------------------
 .../regionserver/HBaseInterClusterReplicationEndpoint.java       | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/ea3907da/hbase-server/src/main/java/org/apache/hadoop/hbase/replication/regionserver/HBaseInterClusterReplicationEndpoint.java
----------------------------------------------------------------------
diff --git a/hbase-server/src/main/java/org/apache/hadoop/hbase/replication/regionserver/HBaseInterClusterReplicationEndpoint.java b/hbase-server/src/main/java/org/apache/hadoop/hbase/replication/regionserver/HBaseInterClusterReplicationEndpoint.java
index be4fc7b..0acb33a 100644
--- a/hbase-server/src/main/java/org/apache/hadoop/hbase/replication/regionserver/HBaseInterClusterReplicationEndpoint.java
+++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/replication/regionserver/HBaseInterClusterReplicationEndpoint.java
@@ -294,8 +294,8 @@ public class HBaseInterClusterReplicationEndpoint extends HBaseReplicationEndpoi
                 + "Replication cannot proceed without losing data.", sleepMultiplier)) {
               sleepMultiplier++;
             }
-          } else if (ioe instanceof SaslException) {
-            LOG.warn("Peer encountered SaslException, rechecking all sinks: ", ioe);
+          } else {
+            LOG.warn("Peer encountered RemoteException, rechecking all sinks: ", ioe);
             replicationSinkMgr.chooseSinks();
           }
         } else {


[4/5] hbase git commit: HBASE-17698 ReplicationEndpoint choosing sinks

Posted by ap...@apache.org.
HBASE-17698 ReplicationEndpoint choosing sinks

Signed-off-by: Andrew Purtell <ap...@apache.org>


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

Branch: refs/heads/branch-1.2
Commit: cd583383bcdae7e658ca2ca308d96a3be48956aa
Parents: 2d79b7d
Author: Karan Mehta <k....@kmehta-ltm1.internal.salesforce.com>
Authored: Mon Mar 6 15:56:24 2017 -0800
Committer: Andrew Purtell <ap...@apache.org>
Committed: Fri Mar 31 16:31:38 2017 -0700

----------------------------------------------------------------------
 .../regionserver/HBaseInterClusterReplicationEndpoint.java       | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/cd583383/hbase-server/src/main/java/org/apache/hadoop/hbase/replication/regionserver/HBaseInterClusterReplicationEndpoint.java
----------------------------------------------------------------------
diff --git a/hbase-server/src/main/java/org/apache/hadoop/hbase/replication/regionserver/HBaseInterClusterReplicationEndpoint.java b/hbase-server/src/main/java/org/apache/hadoop/hbase/replication/regionserver/HBaseInterClusterReplicationEndpoint.java
index 8176384..fa8723c 100644
--- a/hbase-server/src/main/java/org/apache/hadoop/hbase/replication/regionserver/HBaseInterClusterReplicationEndpoint.java
+++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/replication/regionserver/HBaseInterClusterReplicationEndpoint.java
@@ -264,8 +264,8 @@ public class HBaseInterClusterReplicationEndpoint extends HBaseReplicationEndpoi
                 + "Replication cannot proceed without losing data.", sleepMultiplier)) {
               sleepMultiplier++;
             }
-          } else if (ioe instanceof SaslException) {
-            LOG.warn("Peer encountered SaslException, rechecking all sinks: ", ioe);
+          } else {
+            LOG.warn("Peer encountered RemoteException, rechecking all sinks: ", ioe);
             replicationSinkMgr.chooseSinks();
           }
         } else {