You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@inlong.apache.org by do...@apache.org on 2022/09/28 10:18:21 UTC

[inlong] branch release-1.3.0 updated: [INLONG-6049][DataProxy] Disable OmitStackTraceInFastThrow to print verbose error logs (#6050)

This is an automated email from the ASF dual-hosted git repository.

dockerzhang pushed a commit to branch release-1.3.0
in repository https://gitbox.apache.org/repos/asf/inlong.git


The following commit(s) were added to refs/heads/release-1.3.0 by this push:
     new 457240d9b [INLONG-6049][DataProxy] Disable OmitStackTraceInFastThrow to print verbose error logs (#6050)
457240d9b is described below

commit 457240d9b5c74508783f0836a449918b408431f5
Author: xueyingzhang <86...@users.noreply.github.com>
AuthorDate: Wed Sep 28 18:08:06 2022 +0800

    [INLONG-6049][DataProxy] Disable OmitStackTraceInFastThrow to print verbose error logs (#6050)
---
 inlong-dataproxy/bin/dataproxy-ng | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/inlong-dataproxy/bin/dataproxy-ng b/inlong-dataproxy/bin/dataproxy-ng
index 5ad5a07e6..327107a25 100755
--- a/inlong-dataproxy/bin/dataproxy-ng
+++ b/inlong-dataproxy/bin/dataproxy-ng
@@ -235,7 +235,7 @@ else
 fi
 
 # Garbage collection options
-DATA_PROXY_GC=${DATA_PROXY_GC:-"-XX:+UseG1GC -XX:MaxGCPauseMillis=10 -XX:+ParallelRefProcEnabled -XX:+UnlockExperimentalVMOptions -XX:+DoEscapeAnalysis -XX:ParallelGCThreads=32 -XX:ConcGCThreads=32 -XX:G1NewSizePercent=50 -XX:+DisableExplicitGC"}
+DATA_PROXY_GC=${DATA_PROXY_GC:-"-XX:+UseG1GC -XX:MaxGCPauseMillis=10 -XX:+ParallelRefProcEnabled -XX:+UnlockExperimentalVMOptions -XX:+DoEscapeAnalysis -XX:ParallelGCThreads=32 -XX:ConcGCThreads=32 -XX:G1NewSizePercent=50 -XX:+DisableExplicitGC -XX:-OmitStackTraceInFastThrow"}
 
 # Garbage collection log.
 IS_JAVA_8=`java -version 2>&1 |grep version|grep '"1\.8'`