程序员 Java-填坑之路JVM虚拟机&字节码底层术篇幅&JAVA进阶

Disruptor并发框架

2018-06-19  本文已影响6人  IT5

概述
disruptor对于处理并发任务很擅长,曾有人测过,一个线程里1s内可以处理六百万个订单,性能相当感人。

这个框架的结构大概是:数据生产端 --> 缓存 --> 消费端

缓存中的数据是主动发给消费端的,而不是像一般的生产者消费者模式那样,消费端去缓存中取数据。

可以将disruptor理解为,基于事件驱动的高效队列、轻量级的JMS

disruptor学习网站:http://ifeve.com/disruptor-getting-started

开发流程

1.建Event类(数据对象)

2.建立一个生产数据的工厂类,EventFactory,用于生产数据;

3.监听事件类(处理Event数据)

4.实例化Disruptor,配置参数,绑定事件;

5.建存放数据的核心 RingBuffer,生产的数据放入 RungBuffer。

样例
1.入口
import java.nio.ByteBuffer;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;

import com.lmax.disruptor.RingBuffer;
import com.lmax.disruptor.YieldingWaitStrategy;
import com.lmax.disruptor.dsl.Disruptor;
import com.lmax.disruptor.dsl.ProducerType;

public class LongEventMain {

public static void main(String[] args) throws Exception {
    //创建缓冲池
    ExecutorService  executor = Executors.newCachedThreadPool();
    //创建工厂
    LongEventFactory factory = new LongEventFactory();
    //创建bufferSize ,也就是RingBuffer大小,必须是2的N次方
    int ringBufferSize = 1024 * 1024; // 

    /**
    //BlockingWaitStrategy 是最低效的策略,但其对CPU的消耗最小并且在各种不同部署环境中能提供更加一致的性能表现
    WaitStrategy BLOCKING_WAIT = new BlockingWaitStrategy();
    //SleepingWaitStrategy 的性能表现跟BlockingWaitStrategy差不多,对CPU的消耗也类似,但其对生产者线程的影响最小,适合用于异步日志类似的场景
    WaitStrategy SLEEPING_WAIT = new SleepingWaitStrategy();
    //YieldingWaitStrategy 的性能是最好的,适合用于低延迟的系统。在要求极高性能且事件处理线数小于CPU逻辑核心数的场景中,推荐使用此策略;例如,CPU开启超线程的特性
    WaitStrategy YIELDING_WAIT = new YieldingWaitStrategy();
    */
    
    //创建disruptor
    Disruptor<LongEvent> disruptor = 
            new Disruptor<LongEvent>(factory, ringBufferSize, executor, ProducerType.SINGLE, new YieldingWaitStrategy());
    // 连接消费事件方法
    disruptor.handleEventsWith(new LongEventHandler());
    
    // 启动
    disruptor.start();
    
    //Disruptor 的事件发布过程是一个两阶段提交的过程:
    //发布事件
    RingBuffer<LongEvent> ringBuffer = disruptor.getRingBuffer();
    
    LongEventProducer producer = new LongEventProducer(ringBuffer); 
    //LongEventProducerWithTranslator producer = new LongEventProducerWithTranslator(ringBuffer);
    ByteBuffer byteBuffer = ByteBuffer.allocate(8);
    for(long l = 0; l<100; l++){
        byteBuffer.putLong(0, l);
        producer.onData(byteBuffer);
        //Thread.sleep(1000);
    }

    
    disruptor.shutdown();//关闭 disruptor,方法会堵塞,直至所有的事件都得到处理;
    executor.shutdown();//关闭 disruptor 使用的线程池;如果需要的话,必须手动关闭, disruptor 在 shutdown 时不会自动关闭;        
    
    
}

}
2.数据对象:
public class LongEvent {
private long value;
public long getValue() {
return value;
}

public void setValue(long value) { 
    this.value = value; 
} 

}
3.Event工厂
import com.lmax.disruptor.EventFactory;
// 需要让disruptor为我们创建事件,我们同时还声明了一个EventFactory来实例化Event对象。
public class LongEventFactory implements EventFactory {

@Override 
public Object newInstance() { 
    return new LongEvent(); 
} 

}
4.生产者
import java.nio.ByteBuffer;

import com.lmax.disruptor.RingBuffer;
/**

import com.lmax.disruptor.EventHandler;

//我们还需要一个事件消费者,也就是一个事件处理器。这个事件处理器简单地把事件中存储的数据打印到终端:
public class LongEventHandler implements EventHandler<LongEvent> {

@Override
public void onEvent(LongEvent longEvent, long l, boolean b) throws Exception {
    System.out.println(longEvent.getValue());         
}

}

上一篇 下一篇

猜你喜欢

热点阅读