HBASE-27362 CompactSplit.requestCompactionInternal may bypass compactionsEnabled check (#4768)
Co-authored-by: comnetwork <comnetwork@163.com>
Signed-off-by: Duo Zhang <zhangduo@apache.org>
(cherry picked from commit a26cbf1057
)
This commit is contained in:
parent
f7f2d7e1ae
commit
b73348515e
|
@ -302,11 +302,13 @@ public class CompactSplit implements CompactionRequester, PropagatingConfigurati
|
||||||
LOG.info("Re-Initializing compactions because user switched on compactions");
|
LOG.info("Re-Initializing compactions because user switched on compactions");
|
||||||
reInitializeCompactionsExecutors();
|
reInitializeCompactionsExecutors();
|
||||||
}
|
}
|
||||||
} else {
|
setCompactionsEnabled(onOrOff);
|
||||||
LOG.info("Interrupting running compactions because user switched off compactions");
|
return;
|
||||||
interrupt();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
setCompactionsEnabled(onOrOff);
|
setCompactionsEnabled(onOrOff);
|
||||||
|
LOG.info("Interrupting running compactions because user switched off compactions");
|
||||||
|
interrupt();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void requestCompactionInternal(HRegion region, String why, int priority,
|
private void requestCompactionInternal(HRegion region, String why, int priority,
|
||||||
|
@ -322,6 +324,11 @@ public class CompactSplit implements CompactionRequester, PropagatingConfigurati
|
||||||
private void requestCompactionInternal(HRegion region, HStore store, String why, int priority,
|
private void requestCompactionInternal(HRegion region, HStore store, String why, int priority,
|
||||||
boolean selectNow, CompactionLifeCycleTracker tracker,
|
boolean selectNow, CompactionLifeCycleTracker tracker,
|
||||||
CompactionCompleteTracker completeTracker, User user) throws IOException {
|
CompactionCompleteTracker completeTracker, User user) throws IOException {
|
||||||
|
if (!this.isCompactionsEnabled()) {
|
||||||
|
LOG.info("Ignoring compaction request for " + region + ",because compaction is disabled.");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if (
|
if (
|
||||||
this.server.isStopped() || (region.getTableDescriptor() != null
|
this.server.isStopped() || (region.getTableDescriptor() != null
|
||||||
&& !region.getTableDescriptor().isCompactionEnabled())
|
&& !region.getTableDescriptor().isCompactionEnabled())
|
||||||
|
|
Loading…
Reference in New Issue