RockteMQ-AI commented on issue #741:
URL: 
https://github.com/apache/rocketmq-spring/issues/741#issuecomment-5192830011

   **Issue Evaluation**
   
   Category: `question`
   
   Yes, RocketMQ Spring Boot Starter supports broadcast consumption. Set the 
`messageModel` in the `@RocketMQMessageListener` annotation:
   
   ```java
   @RocketMQMessageListener(
       topic = "your-topic",
       consumerGroup = "your-group",
       messageModel = MessageModel.BROADCASTING
   )
   ```
   
   This ensures every consumer instance receives every message (broadcast 
mode). Note that broadcast mode does not support clustering-based load 
balancing — each instance processes all messages independently.
   
   ---
   *Automated evaluation by RockteMQ-AI*


-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to