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:06 UTC

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

Repository: hbase
Updated Branches:
  refs/heads/0.98 e47f396d6 -> 6309959ea
  refs/heads/branch-1 9cf2d641f -> 3dcac2861
  refs/heads/branch-1.0 46536baa9 -> 13335ffe0
  refs/heads/branch-1.1 fe7a0a2d5 -> a04904c6b
  refs/heads/branch-1.2 39d7ce66c -> 24789f7b2
  refs/heads/master 46198bb9a -> c9a014862


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/a04904c6
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/a04904c6
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/a04904c6

Branch: refs/heads/branch-1.1
Commit: a04904c6bdc9ca34d790d137504622b7d48e77ef
Parents: fe7a0a2
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:41:01 2015 -0800

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


http://git-wip-us.apache.org/repos/asf/hbase/blob/a04904c6/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 c91e7b0..048eb34 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
@@ -151,6 +151,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;


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

Posted by ap...@apache.org.
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/13335ffe
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/13335ffe
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/13335ffe

Branch: refs/heads/branch-1.0
Commit: 13335ffe02fb357810551d7c5c81b44ca2b5137d
Parents: 46536ba
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:41: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/13335ffe/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 f94dac9..60ac8ca 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
@@ -151,6 +151,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;


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

Posted by ap...@apache.org.
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/6309959e
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/6309959e
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/6309959e

Branch: refs/heads/0.98
Commit: 6309959ea2da3d60d62d6d53106b4efaeb5e530f
Parents: e47f396
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:41:10 2015 -0800

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


http://git-wip-us.apache.org/repos/asf/hbase/blob/6309959e/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 16c294b..88fbf36 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
@@ -150,6 +150,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;


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

Posted by ap...@apache.org.
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/master
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;


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

Posted by ap...@apache.org.
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/3dcac286
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/3dcac286
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/3dcac286

Branch: refs/heads/branch-1
Commit: 3dcac2861d382d9d739ab162dc2ea0c373d09cf6
Parents: 9cf2d64
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:01 2015 -0800

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


http://git-wip-us.apache.org/repos/asf/hbase/blob/3dcac286/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;


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

Posted by ap...@apache.org.
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;