什麼是Disruptor
從功能上來看,Disruptor 是實現了“佇列”的功能,而且是一個有界佇列。那麼它的應用場景自然就是“生產者-消費者”模型的應用場合了。
可以拿 JDK 的 BlockingQueue 做一個簡單對比,以便更好地認識 Disruptor 是什麼。
我們知道 BlockingQueue 是一個 FIFO 佇列,生產者(Producer)往佇列裡釋出(publish)一項事件(或稱之為“訊息”也可以)時,消費者(Consumer)能獲得通知;如果沒有事件時,消費者被堵塞,直到生產者釋出了新的事件。
這些都是 Disruptor 能做到的,與之不同的是,Disruptor 能做更多:
- 同一個“事件”可以有多個消費者,消費者之間既可以並行處理,也可以相互依賴形成處理的先後次序(形成一個依賴圖);
- 預分配用於儲存事件內容的記憶體空間;
- 針對極高的效能目標而實現的極度優化和無鎖的設計;
以上雖然簡單地描述了 Disruptor 是什麼,但對於它”能做什麼”,還不是那麼明白。簡而言之,當你需要在兩個獨立的處理過程之間交換資料時,就可以使用 Disruptor 。當然使用佇列也可以,只不過 Disruptor 的效能更好。
實戰
本文先不具體去闡述Disruptor的工作具體原理,只是簡單地將Spring與其整合。整合過程很簡單,具體步驟如下:
- 在pom檔案中引入disruptor
<dependency>
<groupId>com.lmax</groupId>
<artifactId>disruptor</artifactId>
<version>3.4.2</version>
</dependency>
- 建立事件
@Data
public class NotifyEvent {
private String message;
}
- 建立訊息工廠用於生產訊息
public class NotifyEventFactory implements EventFactory {
@Override
public Object newInstance() {
return new NotifyEvent();
}
}
- 建立消費者,此處用於處理業務邏輯
public class NotifyEventHandler implements EventHandler<NotifyEvent>,WorkHandler<NotifyEvent> {
@Override
public void onEvent(NotifyEvent notifyEvent, long l, boolean b) throws Exception {
System.out.println("接收到訊息");
this.onEvent(notifyEvent);
}
@Override
public void onEvent(NotifyEvent notifyEvent) throws Exception {
System.out.println(notifyEvent+">>>"+UUID.randomUUID().toString());
}
}
- 自定義異常
@Log4j2
public class NotifyEventHandlerException implements ExceptionHandler {
@Override
public void handleEventException(Throwable throwable, long sequence, Object event) {
throwable.fillInStackTrace();
log.error("process data error sequence ==[{}] event==[{}] ,ex ==[{}]", sequence, event.toString(), throwable.getMessage());
}
@Override
public void handleOnStartException(Throwable throwable) {
log.error("start disruptor error ==[{}]!", throwable.getMessage());
}
@Override
public void handleOnShutdownException(Throwable throwable) {
log.error("shutdown disruptor error ==[{}]!", throwable.getMessage());
}
}
- 整合Spring,對Disruptor進行初始化
@Service
public class NotifyServiceImpl implements INotifyService, DisposableBean,InitializingBean {
private Disruptor<NotifyEvent> disruptor;
private static final int RING_BUFFER_SIZE = 1024 * 1024;
@Override
public void destroy() throws Exception {
disruptor.shutdown();
}
@Override
public void afterPropertiesSet() throws Exception {
disruptor = new Disruptor<NotifyEvent>(new NotifyEventFactory(),RING_BUFFER_SIZE, Executors.defaultThreadFactory(), ProducerType.SINGLE,new BlockingWaitStrategy());
disruptor.setDefaultExceptionHandler(new NotifyEventHandlerException());
disruptor.handleEventsWith(new NotifyEventHandler());
disruptor.start();
}
@Override
public void sendNotify(String message) {
RingBuffer<NotifyEvent> ringBuffer = disruptor.getRingBuffer();
// ringBuffer.publishEvent(new EventTranslatorOneArg<NotifyEvent, String>() {
// @Override
// public void translateTo(NotifyEvent event, long sequence, String data) {
// event.setMessage(data);
// }
// }, message);
ringBuffer.publishEvent((event, sequence, data) -> event.setMessage(data), message); //lambda式寫法,如果是用jdk1.8以下版本使用以上註釋的一段
}
}
- 在需要呼叫的地方注入INotifyService並呼叫sendNotify方法
@GetMapping("test")
@ResponseBody
public String testLog() {
log.info("=============");
notifyService.sendNotify("Hello,World!");
return "hello,world";
}