producer.setRetryAnotherBrokerWhenNotStoreOK(false); 1. 2. 3. 4. 5. 6. 7. 8. 9. 消费消息重试 顺序消息的重试 对于顺序消息,当消费者消费消息失败后,消息队列 RocketMQ 会自动不断进行消息重试(每次间隔时间为 1 秒),这时,应用会出现消息消费被阻塞的情况。 因此,建议您使用顺序消息时,务必保证应用...
long storeTime = msg.getStoreTimestamp(); // 获取消息的存储时间 long currentTime = System.currentTimeMillis(); // 获取当前时间 long latency = currentTime - storeTime; // 计算消息的延迟时间 System.out.println("Message Latency: " + latency + "ms"); } return ConsumeConcurrentlyStatus.CONSUM...