yiguolei commented on code in PR #15624: URL: https://github.com/apache/doris/pull/15624#discussion_r1062142518
########## be/src/common/config.h: ########## @@ -874,6 +874,12 @@ CONF_Int32(pipeline_executor_size, "0"); // Will remove after fully test. CONF_Bool(enable_index_apply_preds_except_leafnode_of_andnode, "false"); +// If the memory consumption of sort node exceed this limit, will trigger spill to disk; +// Set to 0 to disable; defaul to 1G; min: 128M +CONF_mInt64(external_sort_bytes_threshold, "1073741824"); Review Comment: The default value is 0 or -1, it means spill is disabled. If user want to enable it, it should be a value larger than 0. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org