По умолчанию для XX: MaxDirectMemorySize - PullRequest
27 голосов
/ 23 сентября 2010

Какое значение по умолчанию для XX: MaxDirectMemorySize?

Ответы [ 3 ]

20 голосов
/ 07 сентября 2017

С sun.misc.VM, это Runtime.getRuntime.maxMemory(), это то, что настроено на -Xmx. Например если вы не настраиваете -XX:MaxDirectMemorySize и делаете настраиваете -Xmx5g, значение по умолчанию MaxDirectMemorySize также будет 5 Гб, а общая куча + прямое использование памяти приложение может вырасти до 5 + 5 = 10 Гб.

17 голосов
/ 23 сентября 2010

С http://www.docjar.com/html/api/sun/misc/VM.java.html

я вижу:

 163       // A user-settable upper limit on the maximum amount of allocatable direct
 164       // buffer memory.  This value may be changed during VM initialization if
 165       // "java" is launched with "-XX:MaxDirectMemorySize=<size>".
 166       //
 167       // The initial value of this field is arbitrary; during JRE initialization
 168       // it will be reset to the value specified on the command line, if any,
 169       // otherwise to Runtime.getRuntime.maxDirectMemory().
 170       //
 171       private static long directMemory = 64 * 1024 * 1024;

так что по умолчанию кажется 64 мегабайта.

4 голосов
/ 30 января 2019

Для JDK8:

Первоначально установлены произвольные 64 МБ, ...

(От: https://github.com/frohoff/jdk8u-dev-jdk/blob/master/src/share/classes/sun/misc/VM.java#L186)

    // A user-settable upper limit on the maximum amount of allocatable direct
    // buffer memory.  This value may be changed during VM initialization if
    // "java" is launched with "-XX:MaxDirectMemorySize=<size>".
    //
    // The initial value of this field is arbitrary; during JRE initialization
    // it will be reset to the value specified on the command line, if any,
    // otherwise to Runtime.getRuntime().maxMemory().
    //
    private static long directMemory = 64 * 1024 * 1024;

...но тогда для directMemory устанавливается значение maxMemory () ~ = Heapsize (если параметр maxDirectMemorySize-Parameter не установлен):

(из: https://github.com/frohoff/jdk8u-dev-jdk/blob/master/src/share/classes/sun/misc/VM.java#L286)

  // Set the maximum amount of direct memory.  This value is controlled
  // by the vm option -XX:MaxDirectMemorySize=<size>.
  // The maximum amount of allocatable direct buffer memory (in bytes)
  // from the system property sun.nio.MaxDirectMemorySize set by the VM.
  // The system property will be removed.
  String s = (String)props.remove("sun.nio.MaxDirectMemorySize");
  if (s != null) {
      if (s.equals("-1")) {
         // -XX:MaxDirectMemorySize not given, take default
          directMemory = Runtime.getRuntime().maxMemory();
      } else {
         long l = Long.parseLong(s);
          if (l > -1)
              directMemory = l;
      }
  }

Тест, кажется, поддерживает это утверждение, "test.java.nio.Buffer.LimitDirectMemory.java":

(из https://github.com/frohoff/jdk8u-dev-jdk/blob/da0da73ab82ed714dc5be94acd2f0d00fbdfe2e9/test/java/nio/Buffer/LimitDirectMemory.java#L74)

 if (size.equals("DEFAULT"))
            return (int)Runtime.getRuntime().maxMemory();
...