This is an automated email from the ASF dual-hosted git repository.
zhoubo pushed a commit to branch new-official-website-develop
in repository https://gitbox.apache.org/repos/asf/rocketmq-site.git
The following commit(s) were added to refs/heads/new-official-website-develop
by this push:
new a30dfdd1 [ISSUE #248] Remove redundant character (#250)
a30dfdd1 is described below
commit a30dfdd1a470a0523a6a2e1ccb16513f2ebad722
Author: Oliver <[email protected]>
AuthorDate: Wed Sep 28 15:12:12 2022 +0800
[ISSUE #248] Remove redundant character (#250)
* [ISSUE #248] Remove redundant character
* remove redundant symbol
---
"docs/02-\347\224\237\344\272\247\350\200\205/09message5.md" | 2 +-
.../09consumerprogress.md" | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git "a/docs/02-\347\224\237\344\272\247\350\200\205/09message5.md"
"b/docs/02-\347\224\237\344\272\247\350\200\205/09message5.md"
index 77936a35..9cb74a02 100644
--- "a/docs/02-\347\224\237\344\272\247\350\200\205/09message5.md"
+++ "b/docs/02-\347\224\237\344\272\247\350\200\205/09message5.md"
@@ -158,6 +158,6 @@ public interface TransactionListener {
:::caution
-此外,需要注意的是事务消息的生产组名称
ProducerGroupName不能随意设置。事务消息有回查机制,回查时Broker端如果发现原始生产者已经崩溃崩溃,则会联系同一生产者组的其他生产者实例回查本地事务执行情况以Commit或Rollback半事务消息。
+此外,需要注意的是事务消息的生产组名称
ProducerGroupName不能随意设置。事务消息有回查机制,回查时Broker端如果发现原始生产者已经崩溃,则会联系同一生产者组的其他生产者实例回查本地事务执行情况以Commit或Rollback半事务消息。
:::
\ No newline at end of file
diff --git
"a/versioned_docs/version-5.0/04-\345\212\237\350\203\275\350\241\214\344\270\272/09consumerprogress.md"
"b/versioned_docs/version-5.0/04-\345\212\237\350\203\275\350\241\214\344\270\272/09consumerprogress.md"
index 81ea6d0d..0477a526 100644
---
"a/versioned_docs/version-5.0/04-\345\212\237\350\203\275\350\241\214\344\270\272/09consumerprogress.md"
+++
"b/versioned_docs/version-5.0/04-\345\212\237\350\203\275\350\241\214\344\270\272/09consumerprogress.md"
@@ -44,7 +44,7 @@ Apache RocketMQ 领域模型为发布订阅模式,每个主题的队列都可
* ConsumerOffset≤MaxOffset:
* 当消费速度和生产速度一致,且全部消息都处理完成时,最大消息位点和消费位点相同,即ConsumerOffset=MaxOffset。
- *
当消费速度较慢小于生产速度时,队列中会有部分消息未消费,此时消费位点小于最大消息位点,即ConsumerOffset\<MaxOffset,两者之差就是该队列中堆积的消息量。
+ *
当消费速度较慢小于生产速度时,队列中会有部分消息未消费,此时消费位点小于最大消息位点,即ConsumerOffset<MaxOffset,两者之差就是该队列中堆积的消息量。
*
ConsumerOffset≥MinOffset:正常情况下有效的消费位点ConsumerOffset必然大于等于最小消息位点MinOffset。消费位点小于最小消息位点时是无效的,相当于消费者要消费的消息已经从队列中删除了,是无法消费到的,此时服务端会将消费位点强制纠正到合法的消息位点。