Skip to content

Commit

Permalink
add fuzzy vertical compaction
Browse files Browse the repository at this point in the history
  • Loading branch information
TangSiyang2001 committed Oct 17, 2024
1 parent eefa864 commit 9a654da
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 3 additions & 0 deletions be/src/common/config.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1774,6 +1774,9 @@ Status set_fuzzy_configs() {
((distribution(*generator) % 2) == 0) ? "true" : "false";
fuzzy_field_and_value["enable_shrink_memory"] =
((distribution(*generator) % 2) == 0) ? "true" : "false";
fuzzy_field_and_value["enable_vertical_compaction"] =
((distribution(*generator) % 2) == 0) ? "true" : "false";

fuzzy_field_and_value["string_overflow_size"] =
((distribution(*generator) % 2) == 0) ? "10" : "4294967295";

Expand Down
2 changes: 0 additions & 2 deletions regression-test/pipeline/p0/conf/be.conf
Original file line number Diff line number Diff line change
Expand Up @@ -71,5 +71,3 @@ be_proc_monitor_interval_ms = 30000
webserver_num_workers = 128
pipeline_task_leakage_detect_period_sec=1
crash_in_memory_tracker_inaccurate = true

enable_vertical_compaction = false

0 comments on commit 9a654da

Please sign in to comment.