Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix typo in 03fifomessage.md #613

Merged
merged 1 commit into from
Jan 16, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ sh mqadmin updateTopic -n <nameserver_address> -t <topic_name> -c <cluster_name>

**串行消费,避免批量消费导致乱序**

消息消费建议串行处理,避免一次消费多条消费,否则可能出现乱序情况。
消息消费建议串行处理,避免一次消费多条消息,否则可能出现乱序情况。

例如:发送顺序为1-\>2-\>3-\>4,消费时批量消费,消费顺序为1-\>23(批量处理,失败)-\>23(重试处理)-\>4,此时可能由于消息3的失败导致消息2被重复处理,最后导致消息消费乱序。

Expand Down