当前位置:网站首页>Technical Selection of Message Queuing
Technical Selection of Message Queuing
2022-08-02 16:04:00 【zhangyu】
Message Queuing Enterprise Application Scenario Analysis
- Message Queue: A container for storing messages during message transmission. Producers and consumers do not communicate directly, relying on queues to ensure message reliability and avoid mutual influence between systems.
- Major roles of message queue: server, client
- The main functions of message queues: business decoupling, asynchronous calls, traffic peak shaving
- Advantages of decoupling: improve system stability, avoid multiple calls by broadcasting messages, and asynchronously process through message queues for scenarios where you don't need to pay attention to call results
Comparative analysis of message queue selection, why use RocketMQ
feature comparison | Maturity | Sequence Message | Delayed message | Transaction message | Message filtering | Message query | Consumption failure retry | Batch send |
---|---|---|---|---|---|---|---|---|
kafka | Log Field | Support | Not supported | Not supported | Support | Not supported | Not supported | Support |
RabbitMQ | Mature | Support | Not supported | Not supported | Not supported | Not supported | Support | Not supported |
RocketMQ | Mature | Support | Specific LV | Support | Support | Support | Support | Not supported |
Utility | Deployment method | Cluster Management | Select the main method | Master-slave switch | Data reliability | Performance | Availability | Stackability |
---|---|---|---|---|---|---|---|---|
kafka | Clusters | Zookeeper | Automatic elections | Auto switch | High | Very high | Distributed, master-slave | Very good |
RabbitMQ | Clusters | Erlang native support | The oldest joined node | Auto switch | High | in | Master-Slave | General |
RocketMQ | Clusters | Name Server | Not supported | Auto switching is not supported | High | High | Distributed, master-slave | Very good |
- Kafka: a data stream channel between systems
- RabbitMQ: Reliable Messaging
- RocketMQ: High-performance reliable messaging
Analysis of MQ High Availability and High Expansion Solutions
- RocketMQ Architecture
- Broker master-slave deployment, its own information is registered in NameServer
- Client gets broker information from NameServer
- NameServer nodes are independent of each other, no data interaction
- Reliability Analysis
- Sync Flash: low performance, high reliability
- Asynchronous flushing: high performance, low reliability
- Asynchronous replication
- Sync Double Write
- Usability Analysis
- Master-slave mode Master is down: Broker is readable but not writable
- How to build a cluster
- Single Master Mode
- Multi-Master Mode
- Multi-Master Multi-Slave Mode-Asynchronous Replication
- Multi-Master Multi-Slave Mode-Synchronous Double Write
Analysis of MQ service registration and discovery principles
- Registry Center—NameServer Design
- Service registration: Broker registers itself with information
- Service Discovery: Procucer/Consumer Find Broker Information
- Registry Center—NameServer Design Advantages
- Design goals are simple and efficient
- High availability solution: multiple nodes independent of each other
- Data Storage Design
- Cluster-
- Broker1 -
- Topic-
- Broker-heartbeat
- Cluster-
边栏推荐
猜你喜欢
随机推荐
HCIE学习记录——数通网络基础
企业的电子签名、私钥签名
udp transparent proxy
Server-Sent Events 一种轻量级的Push方式
锥形相位掩模的Talbot图像
为什么Volatile能保证双重检查锁的线程安全
理解:野指针,空指针,失效指针。
5款最好用的免费3D建模软件(附下载链接)
富文本编辑
char array/string array|array pointer/pointer array/
shader入门精要1
Unity-Post Processing
学习笔记(01):activiti6.0从入门到精通-工作流的介绍以及插件的安装
极简式 Unity 获取 bilibili 直播弹幕、SC、上舰、礼物等 插件
【进程间通信】:管道通信/有名/无名
Qt | 显示网络图片 QNetworkAccessManager
【Solidity智能合约基础】-- 基础运算与底层位运算
我的2021回忆录
shader入门精要3
记一次 ThreadLocal 泄漏导致的 shardingsphere-jdbc-core 单元测试偶发失败的排查与修复