[
https://issues.apache.org/jira/browse/HBASE-28296?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17804543#comment-17804543
]
guluo commented on HBASE-28296:
-------------------------------
Just like MemStoreFlusher, it would send compaction request after
region.flush() in method flushRegion()
{code:java}
//代码占位符
FlushResult flushResult = region.flushcache(families, false, tracker);
boolean shouldCompact = flushResult.isCompactionNeeded();
// We just want to check the size
boolean shouldSplit = region.checkSplit().isPresent();
if (shouldSplit) {
compactSplitThread.requestSplit(region);
} else if (shouldCompact) {
compactSplitThread.requestSystemCompaction(region,
Thread.currentThread().getName());
}{code}
It is maybe better that FlushProcedure also should do the same things after
region.flush()
{code:java}
//FlushRegionCallable.java doCall()
HRegion.FlushResult res;
if (columnFamilies == null) {
res = region.flush(true);
} else {
res = region.flushcache(columnFamilies, false, FlushLifeCycleTracker.DUMMY);
}
if (res.getResult() == HRegion.FlushResult.Result.CANNOT_FLUSH) {
throw new IOException("Unable to complete flush " + regionInfo);
} {code}
> Sending compact request if necessary after flushing at server side
> ------------------------------------------------------------------
>
> Key: HBASE-28296
> URL: https://issues.apache.org/jira/browse/HBASE-28296
> Project: HBase
> Issue Type: Improvement
> Components: Compaction
> Reporter: guluo
> Priority: Major
>
> By default, hbase would automatically compact periodically.
> However, In this period, what we flush frequently would cause many hfile
> genereated, and hbase does not compact until the next period.
> So in order to prevent the rapid growth of the number of hfile under some
> conditions, I think we can add a check if it needs to compact after flushing
> region at server side.
> Do you think it's a better way? thanks!
>
> One of the codes in here:
> {code:java}
> //FlushRegionCallable.java doCall()
> try {
> HRegion.FlushResult res;
> if (columnFamilies == null) {
> res = region.flush(true);
> } else {
> res = region.flushcache(columnFamilies, false,
> FlushLifeCycleTracker.DUMMY);
> }
> if (res.getResult() == HRegion.FlushResult.Result.CANNOT_FLUSH) {
> throw new IOException("Unable to complete flush " + regionInfo);
> }
> {code}
--
This message was sent by Atlassian Jira
(v8.20.10#820010)