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 2015/12/05 03:54:10 UTC

[5/6] 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/24789f7b
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/24789f7b
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/24789f7b

Branch: refs/heads/branch-1.2
Commit: 24789f7b2a731bbfc7b2de8339a1762d659235c0
Parents: 39d7ce66
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:04 2015 -0800

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


http://git-wip-us.apache.org/repos/asf/hbase/blob/24789f7b/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 0afa145..9bd2a6c 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
@@ -153,6 +153,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;