`
sslaowan
  • 浏览: 379669 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

DirectByteBuffer

    博客分类:
  • Java
 
阅读更多

     如果想使用堆外内存,那么可以使用DirectByteBuffer。

     主要用途:像Terracotta的BigMemory,既想要跟JVM相同进程内的存取,又希望不占用堆内存(因为对于需要长久保持的大数据占用过多的Heap会造成很多无用的Full GC,影响性能),那么就可以利用DirectByteBuffer。

     实现原理,归根结底就是JNI。

 

    上源代码:

    http://www.docjar.org/html/api/java/nio/DirectByteBuffer.java.html

     DirectByteBuffer(int capacity) {

            this(PlatformAddressFactory.alloc(capacity, (byte) 0), capacity, 0);
             address.autoFree();
       }

   层层跟进这个PlatformAddressFacotry,最后跟进到OSMemory这个类

http://www.docjar.org/html/api/org/apache/harmony/luni/platform/OSMemory.java.html

    public native long malloc(long length) throws OutOfMemoryError;

 

   这个是分配内存。

   获得buffer之后,可以调用put放入bytes,调用get重新取回byte。而这些对应了:

public native byte getByte(long address);
public native void setByte(long address, byte value);
   下面是测试:
public class DirectByteBufferTest {

	@Test
	public void test1() {
		int count = 100000;
		int cap = 1024 * 1024;
		testDirectBuf(count, cap);
		testNonDirectBuf(count, cap);

	}

	private void testDirectBuf(int count, int cap) {
		long st;
		long ed;
		ByteBuffer byteBuf = null;
		st = System.currentTimeMillis();

		for (int i = 0; i < count; i++) {
			byteBuf = allocDirectByteBuffer(cap);

		}
		ed = System.currentTimeMillis();
		System.out.println("alloc directByteBuffer for " + count
				+ " times spends " + (ed - st) + "ms");

		st = System.currentTimeMillis();

		for (int i = 0; i < count; i++) {
			processBuf(byteBuf);
		}
		ed = System.currentTimeMillis();
		System.out.println("directByteBuffer process " + count
				+ " times spends " + (ed - st) + "ms");
	}

	private ByteBuffer testNonDirectBuf(int count, int cap) {
		long st = System.currentTimeMillis();
		ByteBuffer byteBuf = null;
		for (int i = 0; i < count; i++) {
			byteBuf = allocNonDirectByteBuffer(cap);
		}
		long ed = System.currentTimeMillis();
		System.out.println("alloc nonDirectByteBuffer for " + count
				+ " times spends " + (ed - st) + "ms");
		st = System.currentTimeMillis();
		for (int i = 0; i < count; i++) {
			processBuf(byteBuf);

		}
		ed = System.currentTimeMillis();
		System.out.println("nonDirectByteBuffer process " + count
				+ " times spends " + (ed - st) + "ms");
		return byteBuf;
	}

	private ByteBuffer allocNonDirectByteBuffer(int cap) {
		ByteBuffer byteBuf = ByteBuffer.allocate(cap);
		return byteBuf;
	}

	private ByteBuffer allocDirectByteBuffer(int cap) {
		ByteBuffer directBuf = ByteBuffer.allocateDirect(cap);
		return directBuf;
	}

	private void processBuf(ByteBuffer buf) {
		byte[] bytes = "assfasf".getBytes();
		buf.put(bytes);
		for (int i = 0; i < bytes.length; i++) {
			byte b = buf.get(i);
			byte[] bytes2 = new byte[] { b };
			// System.out.print(new String(bytes2));
		}
		// System.out.println();
		// System.out.println(buf.capacity());
	}

}
   当int count = 100000;int cap = 1024 * 1024;时,结果如下:
  alloc directByteBuffer for 100,000 times spends 205,610ms

directByteBuffer process 100000 times spends 271ms

alloc nonDirectByteBuffer for 100000 times spends 35,283ms

nonDirectByteBuffer process 100000 times spends 71ms

  这个测试相当于创建100,000个ByteBuffer,耗时时间相差如此之大。创建比较大的内存时,direct memory 比 heap里慢一个数量级。

  而使用最后一个ByteBuffer做存取。可以看出对于存取而已,direct这种方式由于有jni,慢了10倍。

  我又固定了vm参数:  当参数为:-XX:MaxDirectMemorySize=1024m -Xmx1024m -Xms1024m时

alloc directByteBuffer for 100000 times spends 125,305ms

directByteBuffer process 100000 times spends 240ms

alloc nonDirectByteBuffer for 100000 times spends 28,408ms

nonDirectByteBuffer process 100000 times spends 56ms


  将cap改成1024*10,由于每个buffer变小了,因此上面那个测试的写法就不ok了,于是搞一个Buffer池。
  此时需要修改junit vm的参数,如果DirectMemory大小不够会报OutofMemoryError:Direct buffer memory。如果Heap不足,就是java heap 不足的错误了。
  当参数为:-XX:MaxDirectMemorySize=1024m -Xmx1024m时

alloc directByteBuffer for 100000 times spends 1,722ms

directByteBuffer process 100000 times spends 415ms

alloc nonDirectByteBuffer for 100000 times spends 107,563ms

nonDirectByteBuffer process 100000 times spends 4,149ms

 

  当参数为:-XX:MaxDirectMemorySize=1024m -Xmx1024m -Xms1024m时

 

alloc directByteBuffer for 100000 times spends 1,177ms

directByteBuffer process 100000 times spends 260ms

alloc nonDirectByteBuffer for 100000 times spends 63,807ms

nonDirectByteBuffer process 100000 times spends 4,523ms

 

这个测试是创建100,000个ByteBuffer,当创建比较小的内存时,direct buffer memory比在heap里创建效率快10倍。

而这个测试direct比heap里的慢几十倍。

 

 

对于Heap buffer而言,采用两种方式进行测试时,创建时间差距如此巨大的原因有可能是因为full gc,或者是因为操作系统内存不足(因为direct占用了太多的内存)启动了swap。

对于测试一,我单独测试heap buffer,注释掉了对于direct的测试,结果如下:

 

alloc nonDirectByteBuffer for 100000 times spends 28,141ms

nonDirectByteBuffer process 100000 times spends 237ms

这样就跟之前的结果很接近了。

 

而对于测试二而言,结果变成了:

 

alloc nonDirectByteBuffer for 100000 times spends 2,033ms

nonDirectByteBuffer process 100000 times spends 800ms

给测试二加上了-server

 

alloc nonDirectByteBuffer for 100000 times spends 1849ms

nonDirectByteBuffer process 100000 times spends 771ms

 

但是,还是比测试二的direct的1,177,260慢了不少。

主要原因可能是gc。

这也是BigMemory价值所在。

 

 

下面测试对象的情况,这个要对对象进行序列化和反序列化。

@Test
	public void test() {
		for(int i=0;i<100;i++){
			System.out.println("===="+i+"=====");
			testOutofHeapCache();

		}
		
	}

	private void testOutofHeapCache() {
		int cap=1000000;
		Foo foo=new Foo();
		foo.setF1(String.valueOf(System.currentTimeMillis()));
		foo.setF2("f2");
		long st=System.currentTimeMillis();
		ByteBuffer directBuf = ByteBuffer.allocateDirect(cap);
		long ed=System.currentTimeMillis();
		System.out.println("allocate cache spends "+(ed-st)+"ms");

		 st=System.currentTimeMillis();
		byte[] bytesFromObject = getBytesFromObject(foo);
		 ed=System.currentTimeMillis();
		System.out.println("serialize spends "+(ed-st)+"ms");
		st=System.currentTimeMillis();

		directBuf.put(bytesFromObject);
		ed=System.currentTimeMillis();
		System.out.println("put cache spends "+(ed-st)+"ms");

		byte[] result=new byte[bytesFromObject.length];
		st=System.currentTimeMillis();
		for(int i=0,size=bytesFromObject.length;i<size;i++){
			result[i]=directBuf.get(i);

		}
		ed=System.currentTimeMillis();
		System.out.println("get cache spends "+(ed-st)+"ms");

		st=System.currentTimeMillis();
		Foo resultFoo=(Foo)this.getObjectFromBytes(result);
		ed=System.currentTimeMillis();
		System.out.println("deserialize spends "+(ed-st)+"ms");
		assertEquals(foo.getF1(),resultFoo.getF1());
		assertEquals(foo.getF2(),resultFoo.getF2());
		directBuf.clear();
	}
	
	public static byte[] getBytesFromObject(Serializable obj) {
        if (obj == null) {
            return null;
        }
        ByteArrayOutputStream bo = new ByteArrayOutputStream();
        ObjectOutputStream oo;
		try {
			oo = new ObjectOutputStream(bo);
			oo.writeObject(obj);
		} catch (IOException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}
       
        return bo.toByteArray();
    }
	
	public static Object getObjectFromBytes(byte[] objBytes) {
        if (objBytes == null || objBytes.length == 0) {
            return null;
        }
        ByteArrayInputStream bi = new ByteArrayInputStream(objBytes);
        ObjectInputStream oi = null;
		try {
			oi = new ObjectInputStream(bi);
		} catch (IOException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}
        try {
        	
			return oi==null?null:oi.readObject();
		} catch (IOException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		} catch (ClassNotFoundException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}
        return null;
    }


	static class Foo implements Serializable{
		/**
		 * 
		 */
		private static final long serialVersionUID = 1L;
		private String f1;
		private String f2;
		public String getF1() {
			return f1;
		}
		public void setF1(String f1) {
			this.f1 = f1;
		}
		public String getF2() {
			return f2;
		}
		public void setF2(String f2) {
			this.f2 = f2;
		}
		
	}

 结论是:

1 序列化和反序列化耗费了大量时间

2 多次执行,时间消耗为0;

====0=====

allocate cache spends 2ms

serialize spends 11ms

put cache spends 0ms

get cache spends 0ms

deserialize spends 3ms

====1=====

allocate cache spends 1ms

serialize spends 0ms

put cache spends 0ms

get cache spends 0ms

deserialize spends 0ms

====2=====

allocate cache spends 1ms

serialize spends 0ms

put cache spends 0ms

get cache spends 0ms

deserialize spends 1ms

====3=====

allocate cache spends 1ms

serialize spends 0ms

put cache spends 0ms

get cache spends 0ms

deserialize spends 0ms

分享到:
评论

相关推荐

    【IT十八掌徐培成】Java基础第26天-07.DirectByteBuffer.zip

    DirectByteBuffer是Java NIO(New Input/Output)库中的一个重要组成部分,它提供了对系统内存的直接访问,从而在处理大量数据时能显著提高性能。在Java编程中,尤其是在服务器端和高并发环境下,理解并使用...

    【IT十八掌徐培成】Java基础第26天-08.DirectByteBuffer2.zip

    《DirectByteBuffer2》是Java基础课程中的一个重要章节,主要探讨了Java内存管理中直接缓冲区的概念、使用及其优势。在Java编程中,内存管理对于性能优化至关重要,而直接缓冲区(Direct ByteBuffer)作为Java NIO...

    java8源码-netty-learn:这是一个用于netty学习的工程

    DirectByteBuffer HeapByteBuffer ShortBuffer IntBuffer LongBuffer FloatBuffer DoubleBuffer CharBuffer Selector选择器 Selector的作用就是配合一个线程来管理多个channel,获取这些channel上发生

    深入解读 Java 堆外内存(直接内存)1

    `DirectByteBuffer`是一个Java类,它本身存储在堆内存中,但是通过`native`方法`unsafe.allocateMemory(size)`来分配和管理堆外内存。这里的`native`方法是C语言实现的,利用了操作系统级别的内存分配,使得数据可以...

    Java开发者必须了解的堆外内存技术.docx

    因此,合理控制堆外内存的使用量,监控DirectByteBuffer的分配和释放,以及理解JVM如何管理这部分内存,都是Java开发者必备的知识。 在实际开发中,可以通过调整JVM参数,如`-XX:MaxDirectMemorySize`来限制堆外...

    Metaq在JDk 7下的异常及解决方案

    异常现象主要表现为:在尝试清理内存映射文件时,由于Java反射机制调用了`java.nio.DirectByteBuffer`类中的`viewedBuffer()`方法,导致`NoSuchMethodException`异常。异常堆栈跟踪显示,问题出在`MapedFile`类的...

    jdk1.7 64位官方版 jdk-7u79-linux-x64.tar.gz

    6. **堆外内存访问**:通过DirectByteBuffer,可以直接在Java代码中访问操作系统分配的堆外内存,提高了处理大块数据的性能。 7. **改进的类型推断**:编译器能够更智能地推断泛型方法的类型参数。 **64位版本的...

    Java-NIO-Programming-Cookbook(含源码)

    `DirectByteBuffer`是`ByteBuffer`的一个实现,它与`Non-Direct Buffer`(即堆缓冲区)有所不同。直接缓冲区在Java中使用JNI(Java Native Interface)直接在物理内存中分配,而不需要经过Java堆,这通常能提高性能...

    理论:第十三章:堆溢出,栈溢出的出现场景以及解决方案.docx

    * 使用堆外内存,例如使用 DirectByteBuffer 等。 栈溢出是指函数调用栈空间不足,导致函数调用无法继续执行的错误。常见的栈溢出情况有: 1. 局部数组过大:当函数内部的数组过大时,有可能导致堆栈溢出。 2. ...

    netty-learning学习Java源代码.zip

    例如,通过使用DirectByteBuffer和FileRegion,可以减少从磁盘到网络的数据复制步骤。 3. **Channel与Handler**:Netty 的I/O操作基于Channel(通道)和EventLoop(事件循环)的概念。Channel是连接到某个网络端点...

    基于java NIO的简单聊天软件示例

    NIO是一种基于通道和缓冲区的I/O方式,它可以使用Native函数库直接分配堆外内存(区别于JVM的运行时数据区),然后通过一个存储在java堆里面的DirectByteBuffer对象作为这块内存的直接引用进行操作。这样能在一些...

    Netty面试专题.pdf

    DirectByteBuffer是直接分配于系统内存的Buffer,减少了一次从内核空间到用户空间的复制,适用于大型、持久的缓冲区。HeapByteBuffer则是由JVM管理的Buffer,适用于数据量小的场景。 - Channel(通道)与Buffer不同...

    Netty面试专题及答案.pdf

    - **零拷贝(Zero-Copy)**:通过DirectByteBuffer避免了操作系统在用户态和内核态之间的数据拷贝,提高了效率。 - **ByteBuf**:Netty自定义的缓冲区,提供了比Java NIO Buffer更高效和方便的API。 - **Event...

    extjs hibernate spring java direct开发的单页面应用

    DirectByteBuffer允许直接在Java堆外分配内存,减少了Java对象创建的开销,提高了内存访问速度,特别适用于大数据量的I/O操作。在本项目中,如果涉及到大量数据传输,例如库存统计,Java Direct可能会提高性能,降低...

    2018美团点评后台开发干货.zip

    在Netty中,ChannelBufferFactory可以用来创建DirectByteBuffer,而使用完后必须通过ReferenceCounted接口的release方法进行释放。如果忘记释放或者释放不当,就会造成内存泄露。 此外,监控工具如JProfiler或...

    架构师面试题系列之Netty面试专题及答案(10题).docx

    - **DirectByteBuffer 和 HeapBuffer**:DirectByteBuffer 位于堆外内存,减少系统拷贝,适用于大数据量;HeapBuffer 由 JVM 管理,适用于小数据量。 4. **Netty 的 Channel**: - **FileChannel**:读写文件的 ...

    NIO trick and trap NIO网络

    - **DirectByteBuffer**:数据存储在非JVM堆上,适用于大数据量传输,能有效减少数据复制带来的开销。 - **理解关键概念**:Capacity(容量)、Limit(限制)、Position(位置)、Mark(标记)。例如,`0–mark–...

    Java内存管理问题案例分享_技术大学.pdf

    针对这些问题,文中提供了一些解决思路,例如针对物理内存耗光的问题,可以通过分析线程分配的堆栈情况找到问题所在,并修复无限制使用DirectByteBuffer的代码段,避免创建过多的DirectByteBuffer实例,从而缓解内存...

Global site tag (gtag.js) - Google Analytics