- Subscribe to RSS Feed
- Mark Question as New
- Mark Question as Read
- Float this Question for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
jvm settings from bootstrap.conf vs from outside
- Labels:
-
Apache NiFi
Created on ‎04-23-2024 09:35 PM - edited ‎04-23-2024 09:36 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
For nifi, we have jvm options in bootstrap.conf:
java.arg.2=-Xms512m java.arg.3=-Xmx512m
Then we also have env variables(got to know on google search,not from official documentation) that can be set from outside(like from kubernetes config yaml):
NIFI_JVM_HEAP_INIT NIFI_JVM_HEAP_MAX
What's the connection between these 2 sets of properties?
Created ‎04-30-2024 02:04 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
java.arg.2 and java.arg.3 in bootstrap.conf: These are the traditional way of setting JVM arguments within the NiFi configuration file itself. They translate to:
java.arg.2=-Xms512m: This sets the initial heap size of the NiFi JVM to 512 megabytes (m).
java.arg.3=-Xmx512m: This sets the maximum heap size of the NiFi JVM to 512 megabytes (m).
NIFI_JVM_HEAP_INIT and NIFI_JVM_HEAP_MAX environment variables: These are environment variables that allow you to configure the JVM heap size externally. This is particularly useful when deploying NiFi in containerized environments
If both java.arg.2 / java.arg.3 and NIFI_JVM_HEAP_INIT / NIFI_JVM_HEAP_MAX are defined, the environment variables take precedence. This means the values set in the environment variables will be used to configure the JVM heap size.
