Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,11 @@ public static void setEnvironmentEdge() throws Exception {
EnvironmentEdgeManager.injectEdge(ee);
Configuration conf = TEST_UTIL.getConfiguration();
conf.setInt(HStore.BLOCKING_STOREFILES_KEY, 10000);
// Expired store file deletion during compaction optimization interferes with the FIFO
// compaction policy. The race causes changes to in-flight-compaction files resulting in a
// non-deterministic number of files selected by compaction policy. Disables that optimization
// for this test run.
conf.setBoolean("hbase.store.delete.expired.storefile", false);
TEST_UTIL.startMiniCluster(1);
}

Expand Down