You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@doris.apache.org by mo...@apache.org on 2023/01/07 16:12:06 UTC

[doris] 01/03: [Enhancement](Jemalloc): correct the varialbe name of malloc_conf & enable prof (#15382)

This is an automated email from the ASF dual-hosted git repository.

morningman pushed a commit to branch branch-1.2-lts
in repository https://gitbox.apache.org/repos/asf/doris.git

commit cf1cd4a7bd69d1e78ed6882f644a2eeca8446507
Author: spaces-x <we...@gmail.com>
AuthorDate: Wed Dec 28 09:50:59 2022 +0800

    [Enhancement](Jemalloc): correct the varialbe name of malloc_conf & enable prof (#15382)
    
    enable profile and correct the conf name in Jemalloc.
---
 bin/start_be.sh | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/bin/start_be.sh b/bin/start_be.sh
index f73a6584f3..f34973af3c 100755
--- a/bin/start_be.sh
+++ b/bin/start_be.sh
@@ -233,7 +233,8 @@ set_tcmalloc_heap_limit() {
 ## set hdfs conf
 export LIBHDFS3_CONF="${DORIS_HOME}/conf/hdfs-site.xml"
 
-export MALLOC_CONF="percpu_arena:percpu,background_thread:true,metadata_thp:auto,muzzy_decay_ms:30000,dirty_decay_ms:30000,oversize_threshold:0,lg_tcache_max:16"
+# see https://github.com/jemalloc/jemalloc/issues/2366
+export JEMALLOC_CONF="percpu_arena:percpu,background_thread:true,metadata_thp:auto,muzzy_decay_ms:30000,dirty_decay_ms:30000,oversize_threshold:0,lg_tcache_max:16,prof:true,prof_prefix:jeprof.out"
 
 if [[ "${RUN_DAEMON}" -eq 1 ]]; then
     nohup ${LIMIT:+${LIMIT}} "${DORIS_HOME}/lib/doris_be" "$@" >>"${LOG_DIR}/be.out" 2>&1 </dev/null &


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org