You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@hbase.apache.org by "Lars George (JIRA)" <ji...@apache.org> on 2015/08/19 18:46:47 UTC

[jira] [Created] (HBASE-14257) Periodic flusher only handles hbase:meta, not other system tables

Lars George created HBASE-14257:
-----------------------------------

             Summary: Periodic flusher only handles hbase:meta, not other system tables
                 Key: HBASE-14257
                 URL: https://issues.apache.org/jira/browse/HBASE-14257
             Project: HBase
          Issue Type: Bug
          Components: regionserver
    Affects Versions: 2.0.0, 1.2.0
            Reporter: Lars George


In {{HRegion.shouldFlush}} we have

{code}
    long modifiedFlushCheckInterval = flushCheckInterval;
    if (getRegionInfo().isMetaRegion() &&
        getRegionInfo().getReplicaId() == HRegionInfo.DEFAULT_REPLICA_ID) {
      modifiedFlushCheckInterval = META_CACHE_FLUSH_INTERVAL;
    }
{code}

That method is called by the {{PeriodicMemstoreFlusher}} thread, and prefers the {{hbase:meta}} only for faster flushing. It should be doing the same for other system tables. I suggest to use {{HRI.isSystemTable()}}.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)