diff --git a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/CompactingMemStore.java b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/CompactingMemStore.java index ed7d274..751d572 100644 --- a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/CompactingMemStore.java +++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/CompactingMemStore.java @@ -420,8 +420,9 @@ public class CompactingMemStore extends AbstractMemStore { // practically it is impossible that this loop iterates more than two times // (because the compaction is stopped and none restarts it while in snapshot request), // however stopping here for the case of the infinite loop causing by any error - LOG.warn("Multiple unsuccessful attempts to push the compaction pipeline to snapshot," + - " while flushing to disk."); + LOG.error("Multiple unsuccessful attempts to push the compaction pipeline to snapshot," + + " while flushing to disk in region " + + regionServices.getRegionInfo().getRegionNameAsString()); this.snapshot = SegmentFactory.instance().createImmutableSegment(getComparator()); break; }