We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f452c9e commit f48b7b2Copy full SHA for f48b7b2
bin/start_fe.sh
@@ -167,6 +167,12 @@ for f in "${DORIS_HOME}/lib"/*.jar; do
167
done
168
export CLASSPATH="${CLASSPATH}:${DORIS_HOME}/lib:${DORIS_HOME}/conf"
169
170
+if [[ "${OPT_VERSION}" != "" ]]; then
171
+ export DORIS_LOG_TO_STDERR=1
172
+ "${JAVA}" -XX:OnOutOfMemoryError="kill -9 %p" org.apache.doris.PaloFe ${OPT_VERSION:+${OPT_VERSION}} "$@" </dev/null
173
+ exit 0
174
+fi
175
+
176
pidfile="${PID_DIR}/fe.pid"
177
178
if [[ -f "${pidfile}" ]]; then
0 commit comments