作用
在官网概念介绍如下 https://rocketmq.incubator.apache.org/docs/core-concept/
Broker is a major component of the RocketMQ system. It receives messages sent from producers, store them and prepare to handle pull requests from consumers. It also stores message related meta data, including consumer groups, consuming progress offsets and topic / queue info.
就是说有如下这些功能
接受客户端发送到消息,并存储
接受客户端的消费请求,返回消息数据
consumergroup消费进度存储、查询
topic配置管理
一些其他的配置管理、查询:topic创建、删除、修改,broker配置查询、修改,消息查询,broker运行状态,producer、consumer连接,消费进度等待
时序图如下,这个是网上找的,暂时没有确认过
broker时序图
问题
目前还没有清晰的认识,后面看了细节再来补充
refer
http://www.bijishequ.com/detail/34411?p=11-63 图
http://blog.csdn.net/akfly/article/details/53447005 时序图
http://blog.csdn.net/a417930422/article/details/52585468 注意事项和细节
网友评论