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

zhangstar333 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git


The following commit(s) were added to refs/heads/master by this push:
     new 7f6292ce63e [fix](ci) external pipeline use 
regression-test/pipeline/external/conf/be.conf (#36132)
7f6292ce63e is described below

commit 7f6292ce63eabc5399dcfaaa93841d69d71150fc
Author: Dongyang Li <[email protected]>
AuthorDate: Wed Jun 12 11:39:18 2024 +0800

    [fix](ci) external pipeline use 
regression-test/pipeline/external/conf/be.conf (#36132)
    
     external pipeline use regression-test/pipeline/external/conf/be.conf  
instead of regression-test/pipeline/p0/conf/be.conf
    Co-authored-by: stephen <[email protected]>
---
 regression-test/pipeline/external/conf/be.conf | 73 +++++++++++---------------
 1 file changed, 30 insertions(+), 43 deletions(-)

diff --git a/regression-test/pipeline/external/conf/be.conf 
b/regression-test/pipeline/external/conf/be.conf
index 6fb930cc5ea..e26929b0dca 100644
--- a/regression-test/pipeline/external/conf/be.conf
+++ b/regression-test/pipeline/external/conf/be.conf
@@ -15,63 +15,50 @@
 # specific language governing permissions and limitations
 # under the License.
 
+CUR_DATE=`date +%Y%m%d-%H%M%S`
+
 PPROF_TMPDIR="$DORIS_HOME/log/"
 
+# For jdk 8
+JAVA_OPTS="-Xmx1024m -DlogPath=$DORIS_HOME/log/jni.log 
-Xloggc:$DORIS_HOME/log/be.gc.log.$CUR_DATE -XX:+UseGCLogFileRotation 
-XX:NumberOfGCLogFiles=10 -XX:GCLogFileSize=50M 
-Djavax.security.auth.useSubjectCredsOnly=false -Dsun.security.krb5.debug=true 
-Dsun.java.command=DorisBE -XX:-CriticalJNINatives 
-Dcom.mysql.cj.disableAbandonedConnectionCleanup=true"
+
+# For jdk 17, this JAVA_OPTS will be used as default JVM options
+JAVA_OPTS_FOR_JDK_17="-Xmx1024m -DlogPath=$DORIS_HOME/log/jni.log 
-Xlog:gc*:$DORIS_HOME/log/be.gc.log.$CUR_DATE:time,uptime:filecount=10,filesize=50M
 -Djavax.security.auth.useSubjectCredsOnly=false -Dsun.security.krb5.debug=true 
-Dsun.java.command=DorisBE -XX:-CriticalJNINatives 
-XX:+IgnoreUnrecognizedVMOptions --add-opens=java.base/java.lang=ALL-UNNAMED 
--add-opens=java.base/java.lang.invoke=ALL-UNNAMED 
--add-opens=java.base/java.lang.reflect=ALL-UNNAMED 
--add-opens=java.base/java.io=AL [...]
+
+# Set your own JAVA_HOME
+# JAVA_HOME=/path/to/jdk/
+
+# 
https://github.com/apache/doris/blob/master/docs/zh-CN/community/developer-guide/debug-tool.md#jemalloc-heap-profile
+# https://jemalloc.net/jemalloc.3.html
+JEMALLOC_CONF="percpu_arena:percpu,background_thread:true,metadata_thp:auto,muzzy_decay_ms:15000,dirty_decay_ms:15000,oversize_threshold:0,prof:false,lg_prof_interval:32,lg_prof_sample:19,prof_gdump:false,prof_accum:false,prof_leak:false,prof_final:false"
+JEMALLOC_PROF_PRFIX=""
+
 # INFO, WARNING, ERROR, FATAL
 sys_log_level = INFO
 
-# ports for admin, web, heartbeat service 
-be_port = 9162
-webserver_port = 8142
-heartbeat_service_port = 9152
-brpc_port = 8162
+be_port = 9161
+webserver_port = 8141
+heartbeat_service_port = 9151
+brpc_port = 8161
+arrow_flight_sql_port = 8181
 
-mem_limit = 50%
-disable_minidump = true
 path_gc_check_interval_second=1
 max_garbage_sweep_interval=180
-rowbatch_align_tuple_offset=true
-
-buffer_pool_limit = 2%
-storage_page_cache_limit = 0%
-disable_storage_page_cache = true
-chunk_reserved_bytes_limit = 134217728
-# Choose one if there are more than one ip except loopback address. 
-# Note that there should at most one ip match this list.
-# If no ip match this rule, will choose one randomly.
-# use CIDR format, e.g. 10.10.10.0/24
-# Default value is empty.
-# priority_networks = 10.10.10.0/24;192.168.0.0/16
-priority_networks=172.19.0.0/24
-
-# data root path, separate by ';'
-# you can specify the storage medium of each root path, HDD or SSD
-# you can add capacity limit at the end of each root path, seperate by ','
-# eg:
-# /home/disk2/doris, capacity limit is disk capacity, HDD(default)
-# 
-# you also can specify the properties by setting '<property>:<value>', 
seperate by ','
-# property 'medium' has a higher priority than the extension of path
-#
-# Default value is ${DORIS_HOME}/storage, you should create it by hand.
 
-# Advanced configurations
-# sys_log_dir = ${DORIS_HOME}/log
-# sys_log_roll_mode = SIZE-MB-1024
-# sys_log_roll_num = 10
-# sys_log_verbose_modules = *
-# log_buffer_level = -1
+log_buffer_level = -1
 enable_stream_load_record = true
-# palo_cgroups 
-
+storage_root_path=/mnt/ssd01/cluster_storage/doris.SSD/P0/cluster1;/mnt/ssd01/cluster_storage/doris.SSD
 disable_auto_compaction=true
-tablet_map_shard_size=256
-fragment_pool_thread_num_max=5000
+priority_networks=172.19.0.0/24
 enable_fuzzy_mode=true
-enable_set_in_bitmap_value=true
+max_depth_of_expr_tree=200
 enable_feature_binlog=true
+max_sys_mem_available_low_water_mark_bytes=69206016
+user_files_secure_path=/
+enable_debug_points=true
+# debug scanner context dead loop
+enable_debug_log_timeout_secs=0
 
 trino_connector_plugin_dir=/tmp/trino_connector/connectors
 
 enable_jvm_monitor = true
-


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to