You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@rocketmq.apache.org by GitBox <gi...@apache.org> on 2023/01/04 05:37:01 UTC

[GitHub] [rocketmq] Sai-2021 opened a new issue, #5814: 非顺序的失败重试消息有查看的方法吗?

Sai-2021 opened a new issue, #5814:
URL: https://github.com/apache/rocketmq/issues/5814

   非顺序消息失败后会按间隔重试,
   请问有什么方法可以看到重试消息的列表吗?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@rocketmq.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [rocketmq] Sai-2021 commented on issue #5814: 非顺序的失败重试消息有查看的方法吗?

Posted by GitBox <gi...@apache.org>.
Sai-2021 commented on issue #5814:
URL: https://github.com/apache/rocketmq/issues/5814#issuecomment-1370707143

   > 消費失敗的消息會發送回broker 的重試topic,可以查詢重試topic 獲取重試消息的列表 每個消費組會創建一個重試topic,如下:%RETRY%+consumerGroup
   > 
   > https://github.com/apache/rocketmq/blob/develop/docs/cn/features.md#9-%E6%B6%88%E6%81%AF%E9%87%8D%E8%AF%95
   
   我查看了%RETRY%+consumerGroup,发现里面消息数是0,只有'SCHEDULE_TOPIC_XXXX'这个topic里有消息,按下面说明是不是只能在'SCHEDULE_TOPIC_XXXX'里才能看到待重试的消息?
   
   RocketMQ对于重试消息的处理是先保存至Topic名称为“SCHEDULE_TOPIC_XXXX”的延迟队列中,后台定时任务按照对应的时间进行Delay后重新保存至“%RETRY%+consumerGroup”的重试队列中。


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@rocketmq.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [rocketmq] fuyou001 commented on issue #5814: 非顺序的失败重试消息有查看的方法吗?

Posted by GitBox <gi...@apache.org>.
fuyou001 commented on issue #5814:
URL: https://github.com/apache/rocketmq/issues/5814#issuecomment-1371743504

   > > 你可以使用`sh mqadmin consumerprogress -g gid `,查看有RETRY 字母的topic上的消息量
   > 
   > 我查看有RETRY 字母的topic上的消息量,是0.但是SCHEDULE_TOPIC_XXXX里是有消息的,是不是只能在SCHEDULE_TOPIC_XXXX里查看待重试的消息?
   
   SCHEDULE_TOPIC_XXXX是内置topic的消息,消费失败后,需要经过一段时间后才对外可见,[细节可以见商业版官方文档](https://help.aliyun.com/document_detail/43490.html)


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@rocketmq.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [rocketmq] Sai-2021 closed issue #5814: Is there a way to view non-order retry messages?

Posted by GitBox <gi...@apache.org>.
Sai-2021 closed issue #5814: Is there a way to view non-order retry messages?
URL: https://github.com/apache/rocketmq/issues/5814


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@rocketmq.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [rocketmq] WonderMing13 commented on issue #5814: 非顺序的失败重试消息有查看的方法吗?

Posted by GitBox <gi...@apache.org>.
WonderMing13 commented on issue #5814:
URL: https://github.com/apache/rocketmq/issues/5814#issuecomment-1371826844

   先发到%RETRY%+consumerGroup 然后因为延时级别会被SCHEDULE_TOPIC_XXXX处理


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@rocketmq.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [rocketmq] fuyou001 commented on issue #5814: 非顺序的失败重试消息有查看的方法吗?

Posted by GitBox <gi...@apache.org>.
fuyou001 commented on issue #5814:
URL: https://github.com/apache/rocketmq/issues/5814#issuecomment-1370698991

   你可以使用```sh mqadmin consumerprogress -g gid ```,查看有RETRY 字母的topic上的消息量


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@rocketmq.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [rocketmq] HScarb commented on issue #5814: 非顺序的失败重试消息有查看的方法吗?

Posted by GitBox <gi...@apache.org>.
HScarb commented on issue #5814:
URL: https://github.com/apache/rocketmq/issues/5814#issuecomment-1370528129

   消费失败的消息会发送回 broker 的重试 topic,可以查询重试 topic 获取重试消息的列表
   每个消费组会创建一个重试 topic,如下:%RETRY%+consumerGroup


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@rocketmq.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [rocketmq] Sai-2021 commented on issue #5814: 非顺序的失败重试消息有查看的方法吗?

Posted by GitBox <gi...@apache.org>.
Sai-2021 commented on issue #5814:
URL: https://github.com/apache/rocketmq/issues/5814#issuecomment-1370709255

   > 你可以使用`sh mqadmin consumerprogress -g gid `,查看有RETRY 字母的topic上的消息量
   
   我查看有RETRY 字母的topic上的消息量,是0.但是SCHEDULE_TOPIC_XXXX里是有消息的,是不是只能在SCHEDULE_TOPIC_XXXX里查看待重试的消息?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@rocketmq.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org