This is an automated email from the ASF dual-hosted git repository.
jinrongtong pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/rocketmq.git
The following commit(s) were added to refs/heads/develop by this push:
new 1f04e68a2 [ISSUE #7172] Unified Chinese for Name Server (#7173)
1f04e68a2 is described below
commit 1f04e68a2e331ab035b791280c5a91b60fe0c85f
Author: yx9o <[email protected]>
AuthorDate: Sat Aug 12 21:12:22 2023 +0800
[ISSUE #7172] Unified Chinese for Name Server (#7173)
---
docs/cn/concept.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/cn/concept.md b/docs/cn/concept.md
index cb2c863bd..3d67e9371 100644
--- a/docs/cn/concept.md
+++ b/docs/cn/concept.md
@@ -17,7 +17,7 @@ RocketMQ主要由 Producer、Broker、Consumer 三部分组成,其中Producer
消息中转角色,负责存储消息、转发消息。代理服务器在RocketMQ系统中负责接收从生产者发送来的消息并存储、同时为消费者的拉取请求作准备。代理服务器也存储消息相关的元数据,包括消费者组、消费进度偏移和主题和队列消息等。
## 6 名字服务(Name Server)
- 名称服务充当路由消息的提供者。生产者或消费者能够通过名字服务查找各主题相应的Broker
IP列表。多个Namesrv实例组成集群,但相互独立,没有信息交换。
+名字服务充当路由消息的提供者。生产者或消费者能够通过名字服务查找各主题相应的Broker IP列表。多个Namesrv实例组成集群,但相互独立,没有信息交换。
## 7 拉取式消费(Pull Consumer)
Consumer消费的一种类型,应用通常主动调用Consumer的拉消息方法从Broker服务器拉消息、主动权由应用控制。一旦获取了批量消息,应用就会启动消费过程。