This is an automated email from the ASF dual-hosted git repository.
dataroaring pushed a commit to branch branch-3.0
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-3.0 by this push:
new 3e30aa64410 branch-3.0: [opt](ci) adjust threshold for perfmance test
#53650 (#53777)
3e30aa64410 is described below
commit 3e30aa64410a98ec3964fba378120ba70a203821
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Wed Jul 23 19:51:48 2025 +0800
branch-3.0: [opt](ci) adjust threshold for perfmance test #53650 (#53777)
Cherry-picked from #53650
Co-authored-by: Dongyang Li <[email protected]>
---
regression-test/pipeline/performance/run-clickbench.sh | 6 ++++++
regression-test/pipeline/performance/run-load.sh | 10 ++++++++++
regression-test/pipeline/performance/run-tpcds.sh | 6 ++++++
regression-test/pipeline/performance/run-tpch.sh | 6 ++++++
4 files changed, 28 insertions(+)
diff --git a/regression-test/pipeline/performance/run-clickbench.sh
b/regression-test/pipeline/performance/run-clickbench.sh
index 6ed29a464f9..286ce1df9a2 100644
--- a/regression-test/pipeline/performance/run-clickbench.sh
+++ b/regression-test/pipeline/performance/run-clickbench.sh
@@ -260,6 +260,12 @@ exit_flag=0
if [[ "${target_branch}" == "branch-2.0" ]]; then
cold_run_time_threshold=${cold_run_time_threshold_branch20:-110} # 单位 秒
hot_run_time_threshold=${hot_run_time_threshold_branch20:-34} # 单位 秒
+ elif [[ "${target_branch}" == "branch-3.1" ]]; then
+ cold_run_time_threshold=${cold_run_time_threshold_branch31:-120} # 单位 秒
+ hot_run_time_threshold=${hot_run_time_threshold_branch31:-34} # 单位 秒
+ elif [[ "${target_branch}" == "branch-3.0" ]]; then
+ cold_run_time_threshold=${cold_run_time_threshold_branch30:-120} # 单位 秒
+ hot_run_time_threshold=${hot_run_time_threshold_branch30:-34} # 单位 秒
fi
echo "INFO: cold_run_time_threshold is ${cold_run_time_threshold},
hot_run_time_threshold is ${hot_run_time_threshold}"
# result.csv 来自 run-clickbench-queries.sh 的产出
diff --git a/regression-test/pipeline/performance/run-load.sh
b/regression-test/pipeline/performance/run-load.sh
index bd67102f203..156024ffcee 100644
--- a/regression-test/pipeline/performance/run-load.sh
+++ b/regression-test/pipeline/performance/run-load.sh
@@ -671,6 +671,16 @@ exit_flag=0
stream_load_orc_speed_threshold=${stream_load_orc_speed_threshold_branch20:-15}
# 单位 MB/s
stream_load_parquet_speed_threshold=${stream_load_parquet_speed_threshold_branch20:-22}
# 单位 MB/s
insert_into_select_speed_threshold=${insert_into_select_speed_threshold_branch20:-410}
# 单位 Krows/s
+ elif [[ "${target_branch}" == "branch-3.1" ]]; then
+
stream_load_json_speed_threshold=${stream_load_json_speed_threshold_branch31:-115}
# 单位 MB/s
+
stream_load_orc_speed_threshold=${stream_load_orc_speed_threshold_branch31:-15}
# 单位 MB/s
+
stream_load_parquet_speed_threshold=${stream_load_parquet_speed_threshold_branch31:-22}
# 单位 MB/s
+
insert_into_select_speed_threshold=${insert_into_select_speed_threshold_branch31:-700}
# 单位 Krows/s
+ elif [[ "${target_branch}" == "branch-3.0" ]]; then
+
stream_load_json_speed_threshold=${stream_load_json_speed_threshold_branch30:-115}
# 单位 MB/s
+
stream_load_orc_speed_threshold=${stream_load_orc_speed_threshold_branch30:-15}
# 单位 MB/s
+
stream_load_parquet_speed_threshold=${stream_load_parquet_speed_threshold_branch30:-22}
# 单位 MB/s
+
insert_into_select_speed_threshold=${insert_into_select_speed_threshold_branch30:-700}
# 单位 Krows/s
fi
if [[ ${stream_load_json_speed} -lt ${stream_load_json_speed_threshold}
]]; then echo "ERROR: stream_load_json_speed ${stream_load_json_speed} is less
than the threshold ${stream_load_json_speed_threshold}" && exit 1; fi
if [[ ${stream_load_orc_speed} -lt ${stream_load_orc_speed_threshold} ]];
then echo "ERROR: stream_load_orc_speed ${stream_load_orc_speed} is less than
the threshold ${stream_load_orc_speed_threshold}" && exit 1; fi
diff --git a/regression-test/pipeline/performance/run-tpcds.sh
b/regression-test/pipeline/performance/run-tpcds.sh
index 478d822059a..d40c75fe186 100644
--- a/regression-test/pipeline/performance/run-tpcds.sh
+++ b/regression-test/pipeline/performance/run-tpcds.sh
@@ -130,6 +130,12 @@ exit_flag=0
if [[ "${target_branch}" == "branch-2.0" ]]; then
cold_run_time_threshold=${cold_run_time_threshold_branch20:-370000} #
ms
hot_run_time_threshold=${hot_run_time_threshold_branch20:-260000} #
ms
+ elif [[ "${target_branch}" == "branch-3.1" ]]; then
+ cold_run_time_threshold=${cold_run_time_threshold_branch31:-315000} #
ms
+ hot_run_time_threshold=${hot_run_time_threshold_branch31:-190000} #
ms
+ elif [[ "${target_branch}" == "branch-3.0" ]]; then
+ cold_run_time_threshold=${cold_run_time_threshold_branch30:-315000} #
ms
+ hot_run_time_threshold=${hot_run_time_threshold_branch30:-190000} #
ms
fi
echo "INFO: cold_run_time_threshold is ${cold_run_time_threshold},
hot_run_time_threshold is ${hot_run_time_threshold}"
if ! check_tpcds_result
"${teamcity_build_checkoutDir}"/run-tpcds-queries.log; then
diff --git a/regression-test/pipeline/performance/run-tpch.sh
b/regression-test/pipeline/performance/run-tpch.sh
index 36df5d575ce..120b5e91ada 100644
--- a/regression-test/pipeline/performance/run-tpch.sh
+++ b/regression-test/pipeline/performance/run-tpch.sh
@@ -122,6 +122,12 @@ exit_flag=0
if [[ "${target_branch}" == "branch-2.0" ]]; then
cold_run_time_threshold=${cold_run_time_threshold_branch20:-130000} #
ms
hot_run_time_threshold=${hot_run_time_threshold_branch20:-55000} #
ms
+ elif [[ "${target_branch}" == "branch-3.1" ]]; then
+ cold_run_time_threshold=${cold_run_time_threshold_branch31:-120000} #
ms
+ hot_run_time_threshold=${hot_run_time_threshold_branch31:-42000} #
ms
+ elif [[ "${target_branch}" == "branch-3.0" ]]; then
+ cold_run_time_threshold=${cold_run_time_threshold_branch30:-120000} #
ms
+ hot_run_time_threshold=${hot_run_time_threshold_branch30:-42000} #
ms
fi
echo "INFO: cold_run_time_threshold is ${cold_run_time_threshold},
hot_run_time_threshold is ${hot_run_time_threshold}"
if ! check_tpch_result
"${teamcity_build_checkoutDir}"/run-tpch-queries.log; then
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]