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

hbase git commit: HBASE-13811 Splitting WALs, we are filtering out too many edits -> DATALOSS; ADDENDUM

Repository: hbase
Updated Branches:
  refs/heads/branch-1 cd71d37cb -> 3dfccbd42


HBASE-13811 Splitting WALs, we are filtering out too many edits -> DATALOSS; ADDENDUM


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

Branch: refs/heads/branch-1
Commit: 3dfccbd4248185e49933ef591071622f02b820a1
Parents: cd71d37
Author: stack <st...@apache.org>
Authored: Mon Jun 8 12:56:06 2015 -0700
Committer: stack <st...@apache.org>
Committed: Mon Jun 8 12:56:06 2015 -0700

----------------------------------------------------------------------
 .../src/main/java/org/apache/hadoop/hbase/wal/WALSplitter.java      | 1 -
 1 file changed, 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/3dfccbd4/hbase-server/src/main/java/org/apache/hadoop/hbase/wal/WALSplitter.java
----------------------------------------------------------------------
diff --git a/hbase-server/src/main/java/org/apache/hadoop/hbase/wal/WALSplitter.java b/hbase-server/src/main/java/org/apache/hadoop/hbase/wal/WALSplitter.java
index 374996e..15666b2 100644
--- a/hbase-server/src/main/java/org/apache/hadoop/hbase/wal/WALSplitter.java
+++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/wal/WALSplitter.java
@@ -1519,7 +1519,6 @@ public class WALSplitter {
         if (!CellUtil.matchingFamily(cell, WALEdit.METAFAMILY)) {
           byte[] family = CellUtil.cloneFamily(cell);
           Long maxSeqId = maxSeqIdInStores.get(family);
-          LOG.info("CHANGE REMOVE " + Bytes.toString(family) + ", max=" + maxSeqId);
           // Do not skip cell even if maxSeqId is null. Maybe we are in a rolling upgrade,
           // or the master was crashed before and we can not get the information.
           if (maxSeqId != null && maxSeqId.longValue() >= logEntry.getKey().getLogSeqNum()) {