From c9a0148628ca71408710b9f7d68b04b8cf7a0dad Mon Sep 17 00:00:00 2001 From: Andrew Purtell Date: Fri, 4 Dec 2015 18:40:48 -0800 Subject: [PATCH] HBASE-14923 VerifyReplication should not mask the exception during result comparison (Vishal Khandelwal) --- .../hadoop/hbase/mapreduce/replication/VerifyReplication.java | 1 + 1 file changed, 1 insertion(+) 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 e00c68254fa..76ac541ffd3 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;