mjack121 opened a new issue, #742:
URL: https://github.com/apache/rocketmq-spring/issues/742
正如标题所言,consumeThreadMax 这个参数有什么使用场景,看了源码里面的
ConsumeMessageConcurrentlyService 类里有如下声明:
```java
this.consumeExecutor = new
ThreadPoolExecutor(this.defaultMQPushConsumer.getConsumeThreadMin(),
this.defaultMQPushConsumer.getConsumeThreadMax(), 60000L,
TimeUnit.MILLISECONDS, this.consumeRequestQueue, new
ThreadFactoryImpl("ConsumeMessageThread_"));
```
可 consumeRequestQueue 变量又是无界队列!
--
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]