RocketMQ 延迟消息最长延迟时间是三天吗?[阿里云消息队列MQ]

org.apache.rocketmq.client.exception.MQBrokerException: CODE: 13 DESC: timer message illegal, the delay time should not be bigger than the max delay 259200000ms; or if set del msg, the delay time should be bigger than the current time BROKER:
RocketMQ 延迟消息最长延迟时间是三天吗?

「点点赞赏,手留余香」

    还没有人赞赏,快来当第一个赞赏的人吧!
=====这是一个广告位,招租中,联系qq 78315851====
1 条回复 A 作者 M 管理员
  1. 可以设置存储更长时间 此回答整理自钉群“群2-Apache RocketMQ 中国开发者钉钉群”。

  2. 是的,根据您提供的错误信息,RocketMQ中的延迟消息最长延迟时间默认为三天(259200000毫秒)。

    在RocketMQ中,可以通过设置消息的延迟级别来实现延迟发送。每个延迟级别都对应一个预定义的延迟时间,最大延迟时间通常为三天。

    在您的错误信息中,报告了”timer message illegal, the delay time should not be bigger than the max delay 259200000ms”,这意味着您尝试设置的延迟时间超过了最大允许的三天。

    如果您需要更长的延迟时间,您可以自定义延迟级别或修改RocketMQ的相关配置参数来满足您的需求。请参考RocketMQ的文档和官方资源以获取更多关于如何设置自定义延迟时间的详细信息。