HBASE-476 Passing on edits, we dump all to log

git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@634443 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2008-03-06 23:00:37 +00:00
parent 8de1e7de79
commit 57d1bde0e0
2 changed files with 1 additions and 7 deletions

View File

@ -31,6 +31,7 @@ Hbase Change Log
HBASE-490 Doubly-assigned .META.; master uses one and clients another
HBASE-492 hbase TRUNK does not build against hadoop TRUNK
HBASE-496 impossible state for createLease writes 400k lines in about 15mins
HBASE-472 Passing on edits, we dump all to log
IMPROVEMENTS
HBASE-415 Rewrite leases to use DelayedBlockingQueue instead of polling

View File

@ -826,13 +826,6 @@ public class HStore implements HConstants {
if (column.equals(HLog.METACOLUMN)
|| !key.getRegionName().equals(info.getRegionName())
|| !HStoreKey.extractFamily(column).equals(family.getFamilyName())) {
if (LOG.isDebugEnabled()) {
LOG.debug("Passing on edit " + key.getRegionName() + ", " +
column.toString() + ": " +
new String(val.getVal(), UTF8_ENCODING) +
", my region: " + info.getRegionName() + ", my column: " +
family.getFamilyName());
}
continue;
}
HStoreKey k = new HStoreKey(key.getRow(), column, val.getTimestamp());