You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# The memory for external sort in sort operator, when the data size is smaller than sort_buffer_size_in_bytes, the sort operator will use in-memory sort.
1064
-
# effectiveMode: restart
1064
+
# if sort_buffer_size_in_bytes <= 0, default value will be used, default value = min(32MB, memory for query operators / query_thread_count / 2)
1065
+
# if sort_buffer_size_in_bytes > 0, the specified value will be used.
1066
+
# effectiveMode: hot_reload
1065
1067
# Datatype: long
1066
-
sort_buffer_size_in_bytes=1048576
1068
+
sort_buffer_size_in_bytes=0
1067
1069
1068
1070
# The threshold of operator count in the result set of EXPLAIN ANALYZE, if the number of operator in the result set is larger than this threshold, operator will be merged.
0 commit comments