Skip to content

Commit

Permalink
[Refactor] disable persistent index minor compaction (#29905)
Browse files Browse the repository at this point in the history
  • Loading branch information
luohaha authored Aug 24, 2023
1 parent 09c62f7 commit 4f3a2ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion be/src/common/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -978,7 +978,7 @@ CONF_mInt64(l0_snapshot_size, "16777216"); // 16MB
CONF_mInt64(max_tmp_l1_num, "10");
CONF_mBool(enable_parallel_get_and_bf, "true");
// Control if using the minor compaction strategy
CONF_mBool(enable_pindex_minor_compaction, "true");
CONF_mBool(enable_pindex_minor_compaction, "false");
// if l2 num is larger than this, stop doing async compaction,
// add this config to prevent l2 grow too large.
CONF_mInt64(max_allow_pindex_l2_num, "5");
Expand Down

0 comments on commit 4f3a2ee

Please sign in to comment.