This is an automated email from the ASF dual-hosted git repository.
gabriellee 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 b31028196ca Revert "[feature](script) Add check_jvm_xmx for
`start_fe.sh` (#28989)" (#29630)
b31028196ca is described below
commit b31028196cae737406ae3055a8c0320a9ee26733
Author: shuke <[email protected]>
AuthorDate: Sun Jan 7 14:02:02 2024 +0800
Revert "[feature](script) Add check_jvm_xmx for `start_fe.sh` (#28989)"
(#29630)
This reverts commit 8c9908c7b4f575b41e01ae2a81b4423da6a12c3c.
---
bin/start_fe.sh | 23 -----------------------
1 file changed, 23 deletions(-)
diff --git a/bin/start_fe.sh b/bin/start_fe.sh
index 84207977295..f52e47c93ed 100755
--- a/bin/start_fe.sh
+++ b/bin/start_fe.sh
@@ -197,29 +197,6 @@ fi
echo "using java version ${java_version}" >>"${LOG_DIR}/fe.out"
echo "${final_java_opt}" >>"${LOG_DIR}/fe.out"
-function check_jvm_xmx() {
- local os_type
- local total_mem_byte
- local total_mem_mb
- local ninety_percent_mem_mb
- local jvm_xmx_mb
- os_type=$(uname -s)
- if [[ "${os_type}" == "Linux" ]]; then
- total_mem_byte="$(free -b | grep Mem | awk '{print $2}')"
- jvm_xmx_byte="$(${JAVA} "${final_java_opt}" -XX:+PrintFlagsFinal
-version 2>&1 | awk '/MaxHeapSize/ {print $4}')"
- total_mem_mb=$(("${total_mem_byte}" / 1024 / 1024))
- ninety_percent_mem_mb=$(("${total_mem_byte}" * 9 / 10 / 1024 / 1024))
- jvm_xmx_mb=$(("${jvm_xmx_byte}" / 1024 / 1024))
-
- if [[ ${jvm_xmx_mb} -gt ${ninety_percent_mem_mb} ]]; then
- echo "java opt -Xmx is more than 90% of total physical memory"
- echo "total_mem_mb:${total_mem_mb}MB
ninety_percent_mem_mb:${ninety_percent_mem_mb}MB jvm_xmx_mb:${jvm_xmx_mb}MB"
- exit 1
- fi
- fi
-}
-check_jvm_xmx
-
# add libs to CLASSPATH
DORIS_FE_JAR=
for f in "${DORIS_HOME}/lib"/*.jar; do
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]