This is an automated email from the ASF dual-hosted git repository.
xiangfu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pinot.git
The following commit(s) were added to refs/heads/master by this push:
new 09a7ab51c9 Adding jute.maxBuffer in java opts as an example (#15047)
09a7ab51c9 is described below
commit 09a7ab51c96668edca7a21e3d66e20f98b9c40cd
Author: Xiang Fu <[email protected]>
AuthorDate: Wed Feb 12 11:32:12 2025 -0800
Adding jute.maxBuffer in java opts as an example (#15047)
---
helm/pinot/values.yaml | 13 ++++++++-----
1 file changed, 8 insertions(+), 5 deletions(-)
diff --git a/helm/pinot/values.yaml b/helm/pinot/values.yaml
index db48b53c41..42a10cd22e 100644
--- a/helm/pinot/values.yaml
+++ b/helm/pinot/values.yaml
@@ -140,7 +140,7 @@ controller:
host: pinot-controller
port: 9000
- jvmOpts: "-XX:ActiveProcessorCount=2 -Xms256M -Xmx1G -XX:+UseG1GC
-XX:MaxGCPauseMillis=200 -Xlog:gc*:file=/opt/pinot/gc-pinot-controller.log"
+ jvmOpts: "-XX:ActiveProcessorCount=2 -Xms256M -Xmx1G -XX:+UseG1GC
-XX:MaxGCPauseMillis=200 -Xlog:gc*:file=/opt/pinot/gc-pinot-controller.log
-Djute.maxbuffer=4000000"
log4j2ConfFile: /opt/pinot/etc/conf/pinot-controller-log4j2.xml
pluginsDir: /opt/pinot/plugins
@@ -241,7 +241,7 @@ broker:
securityContext: {}
startCommand: "StartBroker"
- jvmOpts: "-XX:ActiveProcessorCount=2 -Xms256M -Xmx1G -XX:+UseG1GC
-XX:MaxGCPauseMillis=200 -Xlog:gc*:file=/opt/pinot/gc-pinot-broker.log"
+ jvmOpts: "-XX:ActiveProcessorCount=2 -Xms256M -Xmx1G -XX:+UseG1GC
-XX:MaxGCPauseMillis=200 -Xlog:gc*:file=/opt/pinot/gc-pinot-broker.log
-Djute.maxbuffer=4000000"
log4j2ConfFile: /opt/pinot/etc/conf/pinot-broker-log4j2.xml
pluginsDir: /opt/pinot/plugins
@@ -419,7 +419,7 @@ server:
extraVolumes: []
extraVolumeMounts: []
- jvmOpts: "-Xms512M -Xmx1G -XX:+UseG1GC -XX:MaxGCPauseMillis=200
-Xlog:gc*:file=/opt/pinot/gc-pinot-server.log"
+ jvmOpts: "-Xms512M -Xmx1G -XX:+UseG1GC -XX:MaxGCPauseMillis=200
-Xlog:gc*:file=/opt/pinot/gc-pinot-server.log -Djute.maxbuffer=4000000"
log4j2ConfFile: /opt/pinot/etc/conf/pinot-server-log4j2.xml
pluginsDir: /opt/pinot/plugins
@@ -532,7 +532,7 @@ minion:
periodSeconds: 10
dataDir: /var/pinot/minion/data
- jvmOpts: "-XX:ActiveProcessorCount=2 -Xms256M -Xmx1G -XX:+UseG1GC
-XX:MaxGCPauseMillis=200 -Xlog:gc*:file=/opt/pinot/gc-pinot-minion.log"
+ jvmOpts: "-XX:ActiveProcessorCount=2 -Xms256M -Xmx1G -XX:+UseG1GC
-XX:MaxGCPauseMillis=200 -Xlog:gc*:file=/opt/pinot/gc-pinot-minion.log
-Djute.maxbuffer=4000000"
log4j2ConfFile: /opt/pinot/etc/conf/pinot-minion-log4j2.xml
pluginsDir: /opt/pinot/plugins
@@ -643,7 +643,7 @@ minionStateless:
periodSeconds: 10
dataDir: /var/pinot/minion/data
- jvmOpts: "-XX:ActiveProcessorCount=2 -Xms256M -Xmx1G -XX:+UseG1GC
-XX:MaxGCPauseMillis=200 -Xlog:gc*:file=/opt/pinot/gc-pinot-minion.log"
+ jvmOpts: "-XX:ActiveProcessorCount=2 -Xms256M -Xmx1G -XX:+UseG1GC
-XX:MaxGCPauseMillis=200 -Xlog:gc*:file=/opt/pinot/gc-pinot-minion.log
-Djute.maxbuffer=4000000"
log4j2ConfFile: /opt/pinot/etc/conf/pinot-minion-log4j2.xml
pluginsDir: /opt/pinot/plugins
@@ -742,6 +742,9 @@ zookeeper:
## This env var is ignored if Xmx an Xms are configured via
`zookeeper.jvmFlags`
heapSize: "1024"
+ ## Extra JVM Flags for Zookeeper
+ jvmFlags: "-Djute.maxbuffer=4000000"
+
persistence:
enabled: true
## The amount of PV storage allocated to each Zookeeper pod in the
statefulset
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]