1. 概述

JDK8及之后方法区的实现变成了元空间,元空间不再使用JVM内存,而是直接使用系统内存,故称为直接内存。对于元空间来说,它具有如下的特点:

  • 元空间不再位于运行时数据区,也不是Java虚拟机规范中定义的区域
  • 元空间直接使用系统内存空间
  • 访问直接内存的效率更高,读写性能更好

元空间的思想来源于Java中的NIO,它通过堆中的DirectByteBuffer操作本地内存。它允许程序使用直接内存,用于数据缓冲区。

  1. import java.nio.ByteBuffer;
  2. import java.util.Scanner;
  3. public class BufferTest {
  4. private static final int BUFFER = 1024 * 1024 * 1024;//1GB
  5. public static void main(String[] args){
  6. //直接分配本地内存空间
  7. ByteBuffer byteBuffer = ByteBuffer.allocateDirect(BUFFER);
  8. System.out.println("直接内存分配完毕,请求指示!");
  9. Scanner scanner = new Scanner(System.in);
  10. scanner.next();
  11. System.out.println("直接内存开始释放!");
  12. byteBuffer = null;
  13. System.gc();
  14. scanner.next();
  15. }
  16. }

2. 直接缓冲与非直接缓冲

2.1 非直接缓冲

非直接缓冲方式读写文件时,需要与磁盘进行交互。因此,它需要用户态和内核态之间的切换。而用户态和内核态之间的相关切换通常开销较大,因此,使用非直接缓冲方式读写文件性能较低。如下所示:
image-20200604103934257.png

  • 当应用程序想要读取物理磁盘上的数据时,首先需要从用户态切换到内核态,由系统负责数据的读取,将数据读取到内核地址空间中。然后再将内核地址空间中的数据复制到用户地址空间中,这样程序才可以使用
  • 当应用程序要往物理磁盘中写入数据时,过程和上面的正好相反,它同样需要进行数据的复制,需要维护两块地址空间来完成写入操作

2.2 直接缓冲

当使用NIO时,操作系统会划出一块区域作为直接缓存区,此时Java程序可以直接访问该缓冲区即可,不必进行状态的切换和数据的复制。
image-20200604104353671.png

  1. import java.io.FileInputStream;
  2. import java.io.FileOutputStream;
  3. import java.io.IOException;
  4. import java.nio.ByteBuffer;
  5. import java.nio.channels.FileChannel;
  6. public class BufferTest1 {
  7. private static final String TO = "C:test.txt";
  8. private static final int _100Mb = 1024 * 1024 * 100;
  9. public static void main(String[] args) {
  10. long sum = 0;
  11. String src = "C:test.txt";
  12. for (int i = 0; i < 3; i++) {
  13. String dest = "D:test" + i + ".txt";
  14. sum += directBuffer(src,dest);
  15. }
  16. System.out.println("总花费的时间为:" + sum );
  17. }
  18. // NIO方式
  19. private static long directBuffer(String src,String dest) {
  20. long start = System.currentTimeMillis();
  21. FileChannel inChannel = null;
  22. FileChannel outChannel = null;
  23. try {
  24. inChannel = new FileInputStream(src).getChannel();
  25. outChannel = new FileOutputStream(dest).getChannel();
  26. ByteBuffer byteBuffer = ByteBuffer.allocateDirect(_100Mb);
  27. while (inChannel.read(byteBuffer) != -1) {
  28. byteBuffer.flip();//修改为读数据模式
  29. outChannel.write(byteBuffer);
  30. byteBuffer.clear();//清空
  31. }
  32. } catch (IOException e) {
  33. e.printStackTrace();
  34. } finally {
  35. if (inChannel != null) {
  36. try {
  37. inChannel.close();
  38. } catch (IOException e) {
  39. e.printStackTrace();
  40. }
  41. }
  42. if (outChannel != null) {
  43. try {
  44. outChannel.close();
  45. } catch (IOException e) {
  46. e.printStackTrace();
  47. }
  48. }
  49. }
  50. long end = System.currentTimeMillis();
  51. return end - start;
  52. }
  53. // 字节缓冲流方式
  54. private static long io(String src,String dest) {
  55. long start = System.currentTimeMillis();
  56. FileInputStream fis = null;
  57. FileOutputStream fos = null;
  58. try {
  59. fis = new FileInputStream(src);
  60. fos = new FileOutputStream(dest);
  61. byte[] buffer = new byte[_100Mb];
  62. while (true) {
  63. int len = fis.read(buffer);
  64. if (len == -1) {
  65. break;
  66. }
  67. fos.write(buffer, 0, len);
  68. }
  69. } catch (IOException e) {
  70. e.printStackTrace();
  71. } finally {
  72. if (fis != null) {
  73. try {
  74. fis.close();
  75. } catch (IOException e) {
  76. e.printStackTrace();
  77. }
  78. }
  79. if (fos != null) {
  80. try {
  81. fos.close();
  82. } catch (IOException e) {
  83. e.printStackTrace();
  84. }
  85. }
  86. }
  87. long end = System.currentTimeMillis();
  88. return end - start;
  89. }
  90. }

3. 直接内存的OOM

虽然直接内存只取决于系统内存的大小情况,但也可能出现OOM。因为Java堆和直接内存的总和依然受限于系统内存的最大值,当堆所占空间太大时,直接内存太小时就可能会出现OOM。

直接内存大小可通过MaxDirectMemorySize参数设置,如果不自定义设置,那么它的大小将和堆的最大值-Xmx参数值一样。

  1. import java.nio.ByteBuffer;
  2. import java.util.ArrayList;
  3. public class OOMTest {
  4. private static final int BUFFER = 1024 * 1024 * 20;//20MB
  5. public static void main(String[] args) {
  6. ArrayList<ByteBuffer> list = new ArrayList<>();
  7. int count = 0;
  8. try {
  9. while(true){
  10. ByteBuffer byteBuffer = ByteBuffer.allocateDirect(BUFFER);
  11. list.add(byteBuffer);
  12. count++;
  13. try {
  14. Thread.sleep(100);
  15. } catch (InterruptedException e) {
  16. e.printStackTrace();
  17. }
  18. }
  19. } finally {
  20. System.out.println(count);
  21. }
  22. }
  23. }

当直接内存用尽时,程序就会抛出OOM异常

  1. 89
  2. Exception in thread "main" java.lang.OutOfMemoryError: Direct buffer memory
  3. at java.nio.Bits.reserveMemory(Bits.java:694)
  4. at java.nio.DirectByteBuffer.<init>(DirectByteBuffer.java:123)
  5. at java.nio.ByteBuffer.allocateDirect(ByteBuffer.java:311)
  6. at DirectBuffer.OOMTest.main(OOMTest.java:14)

4.总结

直接内存使用系统内存,因此使用性能较高。但是它分配回收成本高,而且不受JVM内存回收管理。