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:
parent
8de1e7de79
commit
57d1bde0e0
|
@ -31,6 +31,7 @@ Hbase Change Log
|
||||||
HBASE-490 Doubly-assigned .META.; master uses one and clients another
|
HBASE-490 Doubly-assigned .META.; master uses one and clients another
|
||||||
HBASE-492 hbase TRUNK does not build against hadoop TRUNK
|
HBASE-492 hbase TRUNK does not build against hadoop TRUNK
|
||||||
HBASE-496 impossible state for createLease writes 400k lines in about 15mins
|
HBASE-496 impossible state for createLease writes 400k lines in about 15mins
|
||||||
|
HBASE-472 Passing on edits, we dump all to log
|
||||||
|
|
||||||
IMPROVEMENTS
|
IMPROVEMENTS
|
||||||
HBASE-415 Rewrite leases to use DelayedBlockingQueue instead of polling
|
HBASE-415 Rewrite leases to use DelayedBlockingQueue instead of polling
|
||||||
|
|
|
@ -826,13 +826,6 @@ public class HStore implements HConstants {
|
||||||
if (column.equals(HLog.METACOLUMN)
|
if (column.equals(HLog.METACOLUMN)
|
||||||
|| !key.getRegionName().equals(info.getRegionName())
|
|| !key.getRegionName().equals(info.getRegionName())
|
||||||
|| !HStoreKey.extractFamily(column).equals(family.getFamilyName())) {
|
|| !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;
|
continue;
|
||||||
}
|
}
|
||||||
HStoreKey k = new HStoreKey(key.getRow(), column, val.getTimestamp());
|
HStoreKey k = new HStoreKey(key.getRow(), column, val.getTimestamp());
|
||||||
|
|
Loading…
Reference in New Issue