Thread number in queue listener keeps increasing when using two different RqueueListener "concurrency" properties on two different queues. #146
Replies: 2 comments 11 replies
-
What;s the concurrency value? |
Beta Was this translation helpful? Give feedback.
11 replies
-
Add a debugger at this line and share the number it's using for maxPoolSize Also add a debugger here This method is supposed to create ThreadPoolExecutor of the said size, |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi there,
I have a situation wherein I have two different queues, and I am attempting to set different concurrent thread counts for them via two different properties. Example below.
I set "property1" to 5, and "property2" to 7
In this situation, I noticed that thread number in the "QueueListener" keeps increasing on successive attempts to queue new messages. For example, in the logs I see this.
If I just have one property, and set it to say 5 or 7 for example. The thread number only goes from 1 to 5 (or 1 to 7). Could this be an issue if we try to employ different concurrent thread counts for different queues in the same micro service?
Beta Was this translation helpful? Give feedback.
All reactions