I'm looking at the configuration of a JVM running on a linux server. when I run
java -XX:+PrintFlagsFinal | less | grep -iE 'MaxRam'
Which seems to basically print out just about every parameter the JDK knows about
I see
uint64_t MaxRAM = 137438953472 {pd product}
but I can't seem to find much documentation on this flag.
I found that "{pd product}"
signifies "Platform Dependent Product: An officially supported, internal JVM option"
Anyone know exactly what this parameter signifies, or where I can read in more detail about platform specific JVM flags?
Misc details:
Java -version: .
java version "1.6.0_35" Java(TM) SE Runtime Environment (build 1.6.0_35-b10) Java HotSpot(TM) 64-Bit Server VM (build 20.10-b01, mixed mode)
uname -a
Linux [SERVERNAME] 2.6.32-431.17.1.el6.x86_64 #1 [DATE] x86_64 x86_64 x86_64 GNU/Linux