HBASE-24428 : Update compaction priority (ADDENDUM)

This commit is contained in:
Viraj Jasani 2020-05-28 14:39:49 +05:30
parent 6aa2286733
commit 7df034a824
No known key found for this signature in database
GPG Key ID: 3AE697641452FC5D
1 changed files with 1 additions and 1 deletions

View File

@ -135,7 +135,7 @@ public class HStore implements Store {
// so as to prioritize their compaction.
// Any compaction candidate with higher priority than compaction of newly split daugher regions
// should have priority value < (Integer.MIN_VALUE + 1000)
public static final int SPLIT_REGION_COMPACTION_PRIORITY = Integer.MIN_VALUE + 1000;
private static final int SPLIT_REGION_COMPACTION_PRIORITY = Integer.MIN_VALUE + 1000;
protected final MemStore memstore;
// This stores directory in the filesystem.