当前位置:网站首页>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-
边栏推荐
猜你喜欢
随机推荐
分布式一致性协议-Raft
光波导k域布局可视化(“神奇的圆环”)
指针/【类型】对指针加一能力的影响(&*ip ,*&ipd)
How does ns3 solve cross reference issue
shader入门精要2
剑指offer:在O(1)时间删除链表结点
2021-06-06
lua编程
Oauth2.0 安全性(以微信授权登陆为例)
net start mysql 服务名无效。
JOOQ 报错 StackOverflowError
双链表(普通迭代器和常性迭代器)
CDH (computational Diffie-Hellman) problem and its differences with discrete logarithm and DDH problems
【网络安全】学习笔记 --00
三方对接接口数据安全问题
为什么Volatile能保证双重检查锁的线程安全
Qt | 实现一个简单的可以转动的仪表盘
2. Log out, log in state examination, verification code
Problems related to prime numbers - small notes
Priority table and Ascll table









