高性能队列disruptor

disruptor是一个高性能的内存队列,之所以高性能,因为有以下几个特点:

1 整个disruptor的实现在并发处理中没有使用锁,而是使用的cas操作(disruptor被称为无锁队列的原因)

2 disruptor的内部实现采用循环数组,这样可以避免jvm频繁回收

3 解决了伪共享问题,加速了不同线程同时访问一个缓存行


disruptor的使用场景:

disruptor的内部的设计是生产者和消费者原理,目前log4j2的异步日志就是基于disruptor实现的,还有很多开源项目storm也会依赖disruptor,先来一波demo

package com.guoxiong.disruptor;

/**

* 2018/7/15 下午2:42

*

* @author Jungler

* @since

*/

public class MyData {

private int id;

  private Stringvalue;

  public MyData(int id, String value) {

this.id = id;

      this.value = value;

  }

public int getId() {

return id;

  }

public void setId(int id) {

this.id = id;

  }

public StringgetValue() {

return value;

  }

public void setValue(String value) {

this.value = value;

  }

@Override

  public StringtoString() {

return "MyData{" +

"id=" +id +

", value='" +value +'\'' +

'}';

  }

}


package com.guoxiong.disruptor;

/**

* 2018/7/15 下午2:42

*

* @author Jungler

* @since

*/

public class MyDataEvent {

public MyDataEvent(){

}

private MyDatadata;

  public MyDatagetData() {

return data;

  }

public void setData(MyData data) {

this.data = data;

  }

}


package com.guoxiong.disruptor;

import com.lmax.disruptor.EventFactory;

/**

* 2018/7/15 下午2:43

*

* @author Jungler

* @since

*/

public class MyDataEventFactoryimplements EventFactory {

@Override

  public MyDataEventnewInstance() {

return new MyDataEvent();

  }

}


package com.guoxiong.disruptor;

import com.lmax.disruptor.*;

/**

* 2018/7/22 下午3:18

*

* 消费者处理

*

* @author Jungler

* @since

*/

public class MsgBatchConsumerimplements EventHandler {

private Stringname;

  public MsgBatchConsumer(String name){

this.name = name;

  }

@Override

  public void onEvent(MyDataEvent myDataEvent, long l, boolean b)throws Exception {

System.out.println("name = " +name +" data = " + myDataEvent.getData().toString());

  }

}


package com.guoxiong.disruptor;

import com.lmax.disruptor.WorkHandler;

/**

* 2018/7/22 下午3:42

*

* @author Jungler

* @since

*/

public class MsgWorkConsumerimplements WorkHandler {

private Stringname;

  public MsgWorkConsumer(String name){

this.name = name;

  }

@Override

  public void onEvent(MyDataEvent myDataEvent)throws Exception {

System.out.println("name = " +name +" data = " + myDataEvent.getData().toString());

  }

}


package com.guoxiong.disruptor;

import com.lmax.disruptor.RingBuffer;

import com.lmax.disruptor.dsl.Disruptor;

import java.util.List;

/**

* 2018/7/22 下午3:22

*

* @author Jungler

* @since

*/

public class MsgProducer {

private Disruptordisruptor;

  public MsgProducer(Disruptor disruptor){

this.disruptor = disruptor;

  }

public void send(MyData data){

RingBuffer ringBuffer =this.disruptor.getRingBuffer();

      long next = ringBuffer.next();

      try{

MyDataEvent event = ringBuffer.get(next);

        event.setData(data);

      }finally {

if(next ==5){

return;

        }

ringBuffer.publish(next);

      }

}

public void send(List dataList){

for(MyData data : dataList){

this.send(data);

      }

}

}


package com.guoxiong.disruptor;

import com.lmax.disruptor.dsl.Disruptor;

import java.util.ArrayList;

import java.util.List;

import java.util.concurrent.Executors;

/**

* 2018/7/22 下午3:25

*

* 单生产者,多消费者,每一个消费者消费全部的数据

*

* @author Jungler

* @since

*/

public class DisruptorDemo1 {

public static void main(String[] args) {

MyDataEventFactory myDataEventFactory =new MyDataEventFactory();

      Disruptor disruptor =new Disruptor(myDataEventFactory, 1024, Executors.defaultThreadFactory());

      //定义消费者

      MsgBatchConsumer msg1 =new MsgBatchConsumer("1");

      MsgBatchConsumer msg2 =new MsgBatchConsumer("2");

      MsgBatchConsumer msg3 =new MsgBatchConsumer("3");

      disruptor.handleEventsWith(msg1, msg2, msg3);

      disruptor.start();

      // 定义要发送的数据

      MsgProducer msgProducer =new MsgProducer(disruptor);

      List myDataList =new ArrayList();

      myDataList.add(new MyData(2,"2222"));

      myDataList.add(new MyData(3,"3333"));

      myDataList.add(new MyData(1,"1111"));

      myDataList.add(new MyData(4,"4444"));

      myDataList.add(new MyData(5,"5555"));

      msgProducer.send(myDataList);

  }

}


package com.guoxiong.disruptor;

import com.lmax.disruptor.dsl.Disruptor;

import java.util.ArrayList;

import java.util.List;

import java.util.concurrent.Executors;

/**

* 2018/7/22 下午3:45

*

* 单生产者,多消费者,分组消费(每一个分组合并消费全部数据)

*

* @author Jungler

* @since

*/

public class DisruptorDemo2 {

public static void main(String[] args) {

MyDataEventFactory myDataEventFactory =new MyDataEventFactory();

      Disruptor disruptor =new Disruptor(myDataEventFactory, 16, Executors.defaultThreadFactory());

      MsgWorkConsumer consumer1 =new MsgWorkConsumer("aa");

      //MsgWorkConsumer consumer2 = new MsgWorkConsumer("bb");

//MsgWorkConsumer consumer3 = new MsgWorkConsumer("cc");

//MsgWorkConsumer consumer4 = new MsgWorkConsumer("dd");

      disruptor.handleEventsWithWorkerPool(consumer1);

      //disruptor.handleEventsWithWorkerPool(consumer3,consumer4);

      disruptor.start();

      MsgProducer msgProducer1 =new MsgProducer(disruptor);

      MsgProducer msgProducer2 =new MsgProducer(disruptor);

      List myDataList1 =new ArrayList();

      List myDataList2 =new ArrayList();

      for(int i =1; i <6; i++){

myDataList1.add(new MyData(i,"data" + i));

      }

for(int i =6; i <11; i++){

myDataList2.add(new MyData(i,"data" + i));

      }

msgProducer1.send(myDataList1);

      msgProducer2.send(myDataList2);

      System.out.println(disruptor.getRingBuffer());

      try {

Thread.sleep(5000);

      }catch (Exception e){

}

disruptor.getRingBuffer().publish(5);

      System.out.println(disruptor.getRingBuffer());

  }

}


package com.guoxiong.disruptor;

import com.lmax.disruptor.dsl.Disruptor;

import java.util.ArrayList;

import java.util.List;

import java.util.concurrent.Executors;

/**

* 2018/7/22 下午4:05

*

* 多个消费者顺序消费

*

* @author Jungler

* @since

*/

public class DisruptorDemo3 {

public static void main(String[] args) {

MyDataEventFactory myDataEventFactory =new MyDataEventFactory();

      Disruptor disruptor =new Disruptor(myDataEventFactory, 1024, Executors.defaultThreadFactory());

      //定义消费者

      MsgBatchConsumer msg1 =new MsgBatchConsumer("1");

      MsgBatchConsumer msg2 =new MsgBatchConsumer("2");

      MsgBatchConsumer msg3 =new MsgBatchConsumer("3");

      disruptor.handleEventsWith(msg1, msg3).then(msg2);

      disruptor.start();

      // 定义要发送的数据

      MsgProducer msgProducer =new MsgProducer(disruptor);

      List myDataList =new ArrayList();

      myDataList.add(new MyData(2,"2222"));

      myDataList.add(new MyData(3,"3333"));

      myDataList.add(new MyData(1,"1111"));

      myDataList.add(new MyData(4,"4444"));

      myDataList.add(new MyData(5,"5555"));

      msgProducer.send(myDataList);

  }

}


package com.guoxiong.disruptor;

import com.lmax.disruptor.dsl.Disruptor;

import java.util.ArrayList;

import java.util.List;

import java.util.concurrent.Executors;

/**

* 2018/7/22 下午4:13

*

* @author Jungler

* @since

*/

public class DisruptorDemo4 {

public static void main(String[] args) {

MyDataEventFactory myDataEventFactory =new MyDataEventFactory();

      Disruptor disruptor =new Disruptor(myDataEventFactory, 1024, Executors.defaultThreadFactory());

      //定义消费者

      MsgBatchConsumer msg1 =new MsgBatchConsumer("1");

      MsgBatchConsumer msg2 =new MsgBatchConsumer("2");

      MsgBatchConsumer msg3 =new MsgBatchConsumer("3");

      MsgBatchConsumer msg4 =new MsgBatchConsumer("4");

      MsgBatchConsumer msg5 =new MsgBatchConsumer("5");

      disruptor.handleEventsWith(msg1, msg3);

      disruptor.handleEventsWith(msg2, msg4);

      disruptor.after(msg3,msg4).handleEventsWith(msg5);

      disruptor.start();

      // 定义要发送的数据

      MsgProducer msgProducer =new MsgProducer(disruptor);

      List myDataList =new ArrayList();

      myDataList.add(new MyData(2,"2222"));

      myDataList.add(new MyData(3,"3333"));

      myDataList.add(new MyData(1,"1111"));

      myDataList.add(new MyData(4,"4444"));

      myDataList.add(new MyData(5,"5555"));

      msgProducer.send(myDataList);

  }

}

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 212,657评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,662评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,143评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,732评论 1 284
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,837评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,036评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,126评论 3 410
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,868评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,315评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,641评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,773评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,470评论 4 333
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,126评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,859评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,095评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,584评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,676评论 2 351

推荐阅读更多精彩内容

  • 转载自https://tech.meituan.com/disruptor.html Disruptor是英国外汇...
    檀文渊阅读 2,658评论 0 25
  • Spring Cloud为开发人员提供了快速构建分布式系统中一些常见模式的工具(例如配置管理,服务发现,断路器,智...
    卡卡罗2017阅读 134,637评论 18 139
  • 个人专题目录[https://www.jianshu.com/u/2a55010e3a04] 背景 Disrupt...
    Java及SpringBoot阅读 1,058评论 0 9
  • 1. Java基础部分 基础部分的顺序:基本语法,类相关的语法,内部类的语法,继承相关的语法,异常的语法,线程的语...
    子非鱼_t_阅读 31,602评论 18 399
  • 错位 第一天 不知道怎么回事,是在一片小山丘里醒来。我好像看到了林六水,她在用水洗着鞋子,后来她消失了,应该是去了...
    尧羊阅读 310评论 0 0