This is an automated email from the ASF dual-hosted git repository.
yiguolei 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 f8feaf4e7d4 [fix](script) Fix `start_fe.sh` missing
`METADATA_FAILURE_RECOVERY` with foreground (#31258)
f8feaf4e7d4 is described below
commit f8feaf4e7d4e6e0a81ed56bc238e095e897d76c6
Author: Lei Zhang <[email protected]>
AuthorDate: Fri Feb 23 11:26:42 2024 +0800
[fix](script) Fix `start_fe.sh` missing `METADATA_FAILURE_RECOVERY` with
foreground (#31258)
---
bin/start_fe.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/bin/start_fe.sh b/bin/start_fe.sh
index 035d0e6a7d3..dc8d7857841 100755
--- a/bin/start_fe.sh
+++ b/bin/start_fe.sh
@@ -261,7 +261,7 @@ elif [[ "${RUN_CONSOLE}" -eq 1 ]]; then
export DORIS_LOG_TO_STDERR=1
${LIMIT:+${LIMIT}} "${JAVA}" ${final_java_opt:+${final_java_opt}}
-XX:-OmitStackTraceInFastThrow -XX:OnOutOfMemoryError="kill -9 %p"
${coverage_opt:+${coverage_opt}} org.apache.doris.DorisFE ${HELPER:+${HELPER}}
${OPT_VERSION:+${OPT_VERSION}} "${METADATA_FAILURE_RECOVERY}" "$@" </dev/null
else
- ${LIMIT:+${LIMIT}} "${JAVA}" ${final_java_opt:+${final_java_opt}}
-XX:-OmitStackTraceInFastThrow -XX:OnOutOfMemoryError="kill -9 %p"
${coverage_opt:+${coverage_opt}} org.apache.doris.DorisFE ${HELPER:+${HELPER}}
${OPT_VERSION:+${OPT_VERSION}} "$@" >>"${LOG_DIR}/fe.out" 2>&1 </dev/null
+ ${LIMIT:+${LIMIT}} "${JAVA}" ${final_java_opt:+${final_java_opt}}
-XX:-OmitStackTraceInFastThrow -XX:OnOutOfMemoryError="kill -9 %p"
${coverage_opt:+${coverage_opt}} org.apache.doris.DorisFE ${HELPER:+${HELPER}}
${OPT_VERSION:+${OPT_VERSION}} "${METADATA_FAILURE_RECOVERY}" "$@"
>>"${LOG_DIR}/fe.out" 2>&1 </dev/null
fi
if [[ "${OPT_VERSION}" != "" ]]; then
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]