Skip to content

Latest commit

 

History

History
14 lines (11 loc) · 611 Bytes

jvm-parameters.md

File metadata and controls

14 lines (11 loc) · 611 Bytes

JVM Parameters

  • InitialRAMPercentage allows to configure the initial heap size of app, percentage of total physical memory. This will be picked only when -Xms is not configured
  • MinRAMPercentage allows to configure the Max heap size of the app, this will be picked only when physical memory is low (for example 100MB) otherwise MaxRAMPercentage. Both parameters will be ignored if -Xmx is set
  • MaxRAMPercentage allows to configure the Max heap size of the app.

Resources