HBASE-19328 Remove asked if splittable log messages
Signed-off-by: Michael Stack <stack@apache.org> Signed-off-by: Chia-Ping Tsai <chia7712@gmail.com>
This commit is contained in:
parent
a62010c9e7
commit
ed16667208
|
@ -1305,18 +1305,7 @@ public class HRegion implements HeapSize, PropagatingConfigurationObserver, Regi
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean isSplittable() {
|
public boolean isSplittable() {
|
||||||
boolean result = isAvailable() && !hasReferences();
|
return isAvailable() && !hasReferences();
|
||||||
LOG.info("ASKED IF SPLITTABLE " + result + " " + getRegionInfo().getShortNameToLog(),
|
|
||||||
new Throwable("LOGGING: REMOVE"));
|
|
||||||
// REMOVE BELOW!!!!
|
|
||||||
LOG.info("DEBUG LIST ALL FILES");
|
|
||||||
for (HStore store : this.stores.values()) {
|
|
||||||
LOG.info("store " + store.getColumnFamilyName());
|
|
||||||
for (HStoreFile sf : store.getStorefiles()) {
|
|
||||||
LOG.info(sf.toStringDetailed());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return result;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Reference in New Issue