Skip to content

Commit

Permalink
[fix] (inverted index) disable index compaction (#41427)
Browse files Browse the repository at this point in the history
  • Loading branch information
csun5285 authored Oct 8, 2024
1 parent 9101ed0 commit 48cbc35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion be/src/common/config.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1036,7 +1036,7 @@ DEFINE_Int32(inverted_index_read_buffer_size, "4096");
// tree depth for bkd index
DEFINE_Int32(max_depth_in_bkd_tree, "32");
// index compaction
DEFINE_mBool(inverted_index_compaction_enable, "true");
DEFINE_mBool(inverted_index_compaction_enable, "false");
// Only for debug, do not use in production
DEFINE_mBool(debug_inverted_index_compaction, "false");
// index by RAM directory
Expand Down

0 comments on commit 48cbc35

Please sign in to comment.