Skip to content

Commit

Permalink
[Enhancement] Set default value of chunk_reserved_bytes_limit to 0 (b…
Browse files Browse the repository at this point in the history
…ackport #51263) (#51414)

Co-authored-by: trueeyu <lxhhust350@qq.com>
  • Loading branch information
mergify[bot] and trueeyu authored Sep 26, 2024
1 parent 9daf8f1 commit 9f7bebd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion be/src/common/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,7 @@ CONF_Bool(use_mmap_allocate_chunk, "false");
// Chunk Allocator's reserved bytes limit,
// Default value is 2GB, increase this variable can improve performance, but will
// acquire more free memory which can not be used by other modules
CONF_Int64(chunk_reserved_bytes_limit, "2147483648");
CONF_Int64(chunk_reserved_bytes_limit, "0");

// for pprof
CONF_String(pprof_profile_dir, "${STARROCKS_HOME}/log");
Expand Down

0 comments on commit 9f7bebd

Please sign in to comment.