[fix](spill) fix wrong disk usage of spill (#35423)
## Proposed changes Issue Number: close #xxx <!--Describe your changes.--> ## Further comments If this is a relatively large or complex change, kick off the discussion at [dev@doris.apache.org](mailto:dev@doris.apache.org) by explaining why you chose the solution you did and what alternatives you considered, etc...
This commit is contained in:
@ -1173,9 +1173,9 @@ DEFINE_mDouble(high_disk_avail_level_diff_usages, "0.15");
|
||||
DEFINE_Int32(partition_disk_index_lru_size, "10000");
|
||||
// limit the storage space that query spill files can use
|
||||
DEFINE_String(spill_storage_root_path, "");
|
||||
DEFINE_String(spill_storage_limit, "20%"); // 20%
|
||||
DEFINE_mInt32(spill_gc_interval_ms, "2000"); // 2s
|
||||
DEFINE_mInt32(spill_gc_file_count, "2000");
|
||||
DEFINE_String(spill_storage_limit, "20%"); // 20%
|
||||
DEFINE_mInt32(spill_gc_interval_ms, "2000"); // 2s
|
||||
DEFINE_mInt32(spill_gc_work_time_ms, "2000"); // 2s
|
||||
DEFINE_Int32(spill_io_thread_pool_thread_num, "-1");
|
||||
DEFINE_Validator(spill_io_thread_pool_thread_num, [](const int config) -> bool {
|
||||
if (config == -1) {
|
||||
|
||||
Reference in New Issue
Block a user