HBASE-3821 'NOT flushing memstore for region' keep on printing for half an hour

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1099318 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2011-05-04 03:51:59 +00:00
parent 6aa6a4ad8f
commit 81e9be2518
3 changed files with 4 additions and 1 deletions

View File

@ -273,6 +273,8 @@ Release 0.90.3 - Unreleased
HBASE-3741 Make HRegionServer aware of the regions it's opening/closing
HBASE-3597 ageOfLastAppliedOp should update after cluster replication
failures
HBASE-3821 "NOT flushing memstore for region" keep on printing for half
an hour (zhoushuaifeng)
IMPROVEMENTS
HBASE-3747 ReplicationSource should differanciate remote and local exceptions

View File

@ -177,7 +177,7 @@ public class CompactSplitThread extends Thread implements CompactionRequestor {
st.rollback(this.server, this.server);
LOG.info("Successful rollback of failed split of " +
parent.getRegionNameAsString());
} catch (RuntimeException ee) {
} catch (Exception ee) {
// If failed rollback, kill this server to avoid having a hole in table.
LOG.info("Failed rollback of failed split of " +
parent.getRegionNameAsString() + " -- aborting server", ee);

View File

@ -594,6 +594,7 @@ public class SplitTransaction {
break;
case CREATE_SPLIT_DIR:
this.parent.writestate.writesEnabled = true;
cleanupSplitDir(fs, this.splitdir);
break;