RockteMQ-AI commented on issue #748: URL: https://github.com/apache/rocketmq-spring/issues/748#issuecomment-5655097685
**Issue Evaluation** Category: `type/question` The 5.x gRPC client uses a different threading model than the 4.x remoting client. `consumeThreadMax` was deprecated because the 5.x client manages its own internal thread pools based on the gRPC transport layer, rather than exposing min/max thread counts for consumption. The fixed `consumeThreadNums` controls the concurrency of message processing callbacks. For multi-topic deployments, each listener gets its own container with the configured thread count. If you need dynamic scaling, consider adjusting `consumeThreadNums` based on your expected load, or use async processing patterns. --- *Automated evaluation by github-manager* -- 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]
