web-dev-qa-db-fra.com

Valeur par défaut pour XX: MaxDirectMemorySize

Quelle est la valeur par défaut pour XX: MaxDirectMemorySize?

21
Timur Fanshteyn

De http://www.docjar.com/html/api/Sun/misc/VM.Java.html

je vois:

 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;

il semble donc par défaut à 64 Mo.

18
John Gardner

De Sun.misc.VM , c'est Runtime.getRuntime.maxMemory() , c'est ce qui est configuré avec -Xmx. Par exemple. si vous notez configure -XX:MaxDirectMemorySize et do configure -Xmx5g, la "valeur par défaut" MaxDirectMemorySize sera également de 5 Gb, et l'utilisation totale de la mémoire en mode tas + mémoire directe de l'application peut atteindre 5 + 5 = 10 Gb.

15
leventov

Pour JDK8:

Les 64Mo sont définis arbitrairement initialement, ...

(De: 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;

... mais alors directMemory est défini sur maxMemory () ~ = Heapsize ici (si le paramètre maxDirectMemorySize n'est pas défini):

(from: 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;
      }
  }

Le test semble appuyer cette affirmation, "Test.Java.nio.Buffer.LimitDirectMemory.Java":

(from 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();
0
Robert Wunsch