You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by sy...@apache.org on 2015/12/07 17:56:22 UTC

[45/50] [abbrv] hbase git commit: HBASE-14923 VerifyReplication should not mask the exception during result comparison (Vishal Khandelwal)

HBASE-14923 VerifyReplication should not mask the exception during result comparison (Vishal Khandelwal)


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

Branch: refs/heads/hbase-12439
Commit: c9a0148628ca71408710b9f7d68b04b8cf7a0dad
Parents: 46198bb
Author: Andrew Purtell <ap...@apache.org>
Authored: Fri Dec 4 18:40:48 2015 -0800
Committer: Andrew Purtell <ap...@apache.org>
Committed: Fri Dec 4 18:53:05 2015 -0800

----------------------------------------------------------------------
 .../hadoop/hbase/mapreduce/replication/VerifyReplication.java       | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/c9a01486/hbase-server/src/main/java/org/apache/hadoop/hbase/mapreduce/replication/VerifyReplication.java
----------------------------------------------------------------------
diff --git a/hbase-server/src/main/java/org/apache/hadoop/hbase/mapreduce/replication/VerifyReplication.java b/hbase-server/src/main/java/org/apache/hadoop/hbase/mapreduce/replication/VerifyReplication.java
index e00c682..76ac541 100644
--- a/hbase-server/src/main/java/org/apache/hadoop/hbase/mapreduce/replication/VerifyReplication.java
+++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/mapreduce/replication/VerifyReplication.java
@@ -155,6 +155,7 @@ public class VerifyReplication extends Configured implements Tool {
             context.getCounter(Counters.GOODROWS).increment(1);
           } catch (Exception e) {
             logFailRowAndIncreaseCounter(context, Counters.CONTENT_DIFFERENT_ROWS, value);
+            LOG.error("Exception while comparing row : " + e);
           }
           currentCompareRowInPeerTable = replicatedScanner.next();
           break;