Skip to content

Commit

Permalink
HBASE-14185 Incorrect region names logged by MemStoreFlusher (Biju Nair)
Browse files Browse the repository at this point in the history
  • Loading branch information
tedyu committed Aug 5, 2015
1 parent 1b0b67f commit a0d7205
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -197,12 +197,12 @@ private boolean flushOneForGlobalPressure() {
ServerRegionReplicaUtil.isRegionReplicaStoreFileRefreshEnabled(conf) &&
(bestRegionReplica.getMemstoreSize()
> secondaryMultiplier * regionToFlush.getMemstoreSize()))) {
LOG.info("Refreshing storefiles of region " + regionToFlush +
LOG.info("Refreshing storefiles of region " + bestRegionReplica +
" due to global heap pressure. memstore size=" + StringUtils.humanReadableInt(
server.getRegionServerAccounting().getGlobalMemstoreSize()));
flushedOne = refreshStoreFilesAndReclaimMemory(bestRegionReplica);
if (!flushedOne) {
LOG.info("Excluding secondary region " + regionToFlush +
LOG.info("Excluding secondary region " + bestRegionReplica +
" - trying to find a different region to refresh files.");
excludedRegions.add(bestRegionReplica);
}
Expand Down

0 comments on commit a0d7205

Please sign in to comment.