This is an automated email from the ASF dual-hosted git repository.
hellostephen 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 9234f8f48df [chore](ci) change stop order from FE BE MS to BE FE MS
(#51945)
9234f8f48df is described below
commit 9234f8f48dfaba69e09f0449a61ab4065d725ec8
Author: Dongyang Li <[email protected]>
AuthorDate: Fri Jun 20 17:18:52 2025 +0800
[chore](ci) change stop order from FE BE MS to BE FE MS (#51945)
### What problem does this PR solve?
If stop FE first, the pipeline often encounters a core like
`AddressSanitizer: CHECK failed: asan_thread.cpp:368 "((ptr[0] ==
kCurrentStackFrameMagic)) != (0)" (0x0, 0x0) (tid=10958)`
---
regression-test/pipeline/common/doris-utils.sh | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/regression-test/pipeline/common/doris-utils.sh
b/regression-test/pipeline/common/doris-utils.sh
index b11f6df7549..939ec17eaa2 100644
--- a/regression-test/pipeline/common/doris-utils.sh
+++ b/regression-test/pipeline/common/doris-utils.sh
@@ -206,7 +206,7 @@ function check_doris_ready() {
function stop_doris() {
if [[ ! -d "${DORIS_HOME:-}" ]]; then return 1; fi
- if "${DORIS_HOME}"/fe/bin/stop_fe.sh && "${DORIS_HOME}"/be/bin/stop_be.sh;
then
+ if "${DORIS_HOME}"/be/bin/stop_be.sh && "${DORIS_HOME}"/fe/bin/stop_fe.sh;
then
echo "INFO: normally stoped doris"
else
pgrep -fi doris | xargs kill -9 &>/dev/null
@@ -218,8 +218,8 @@ function stop_doris() {
function stop_doris_grace() {
if [[ ! -d "${DORIS_HOME:-}" ]]; then return 1; fi
- if "${DORIS_HOME}"/fe/bin/stop_fe.sh --grace &&
"${DORIS_HOME}"/be/bin/stop_be.sh --grace; then
- echo "INFO: normally stoped doris"
+ if "${DORIS_HOME}"/be/bin/stop_be.sh --grace &&
"${DORIS_HOME}"/fe/bin/stop_fe.sh --grace; then
+ echo "INFO: normally stoped doris --grace"
else
pgrep -fi doris | xargs kill -9 &>/dev/null
echo "WARNING: force stoped doris"
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]