This is an automated email from the ASF dual-hosted git repository. morningman pushed a commit to branch dev-1.0.1 in repository https://gitbox.apache.org/repos/asf/incubator-doris.git
commit bda73c9ba5cc089ad9dc9e73e0e24593b6c4d461 Author: smallhibiscus <[email protected]> AuthorDate: Mon May 30 09:44:12 2022 +0800 [improvement](script) Add jvm parameters and the process will automatically stop when oom occurs in fe. (#9765) --- bin/start_fe.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/start_fe.sh b/bin/start_fe.sh index 37a474ca4b..5c83f8991e 100755 --- a/bin/start_fe.sh +++ b/bin/start_fe.sh @@ -164,10 +164,10 @@ if [ x"$HELPER" != x"" ]; then fi if [ ${RUN_DAEMON} -eq 1 ]; then - nohup $LIMIT $JAVA $final_java_opt org.apache.doris.PaloFe ${HELPER} "$@" >> $LOG_DIR/fe.out 2>&1 < /dev/null & + nohup $LIMIT $JAVA $final_java_opt -XX:OnOutOfMemoryError="kill -9 %p" org.apache.doris.PaloFe ${HELPER} "$@" >> $LOG_DIR/fe.out 2>&1 < /dev/null & else export DORIS_LOG_TO_STDERR=1 - $LIMIT $JAVA $final_java_opt org.apache.doris.PaloFe ${HELPER} "$@" < /dev/null + $LIMIT $JAVA $final_java_opt -XX:OnOutOfMemoryError="kill -9 %p" org.apache.doris.PaloFe ${HELPER} "$@" < /dev/null fi echo $! > $pidfile --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
