Author |
Message
|
vicks_mq |
Posted: Mon May 06, 2019 6:01 pm Post subject: Spring JMS listener count dropping |
|
|
Disciple
Joined: 03 Oct 2017 Posts: 162
|
Hi, We have SPRING JMS Listener on our Websphere MQ. after some time of inactivity, the IPPROCS on the queue gets dropped but that count is not increasing even we get the large number of messages coming into Queue.
What configuration am I missing here , which is causing SPRING based listener not to come back up. |
|
Back to top |
|
 |
exerk |
Posted: Tue May 07, 2019 12:30 am Post subject: |
|
|
 Jedi Council
Joined: 02 Nov 2006 Posts: 6339
|
Are you seeing the channel(s) dropping? _________________ It's puzzling, I don't think I've ever seen anything quite like this before...and it's hard to soar like an eagle when you're surrounded by turkeys. |
|
Back to top |
|
 |
vicks_mq |
Posted: Tue May 07, 2019 4:09 am Post subject: |
|
|
Disciple
Joined: 03 Oct 2017 Posts: 162
|
exerk wrote: |
Are you seeing the channel(s) dropping? |
Yes that is right both IPPROCS and SVRCONN channel instances are dropping, it went from 30 instances when application started to only 1 in few hours. |
|
Back to top |
|
 |
exerk |
Posted: Tue May 07, 2019 10:12 am Post subject: |
|
|
 Jedi Council
Joined: 02 Nov 2006 Posts: 6339
|
vicks_mq wrote: |
exerk wrote: |
Are you seeing the channel(s) dropping? |
Yes that is right both IPPROCS and SVRCONN channel instances are dropping, it went from 30 instances when application started to only 1 in few hours. |
Then the application is dropping them deliberately, or the connections are being interrupted and not being re-established by the application.
Are you expecting the application to automatically reconnect to the queue manager? If so, does the application follow the requirements for automatic reconnection for a Java application? _________________ It's puzzling, I don't think I've ever seen anything quite like this before...and it's hard to soar like an eagle when you're surrounded by turkeys. |
|
Back to top |
|
 |
vicks_mq |
Posted: Wed May 08, 2019 1:55 am Post subject: |
|
|
Disciple
Joined: 03 Oct 2017 Posts: 162
|
exerk wrote: |
vicks_mq wrote: |
exerk wrote: |
Are you seeing the channel(s) dropping? |
Yes that is right both IPPROCS and SVRCONN channel instances are dropping, it went from 30 instances when application started to only 1 in few hours. |
Then the application is dropping them deliberately, or the connections are being interrupted and not being re-established by the application.
Are you expecting the application to automatically reconnect to the queue manager? If so, does the application follow the requirements for automatic reconnection for a Java application? |
Expecatation here is when the large number of messages arrive in the queue for application to consume, it should start more instances of channel and have more listeners so that it can consume messages faster. but once the listener drops, the application is not bringing the count backup. |
|
Back to top |
|
 |
Vitor |
Posted: Wed May 08, 2019 5:36 am Post subject: |
|
|
 Grand High Poobah
Joined: 11 Nov 2005 Posts: 26093 Location: Texas, USA
|
vicks_mq wrote: |
Expecatation here is when the large number of messages arrive in the queue for application to consume, it should start more instances of channel and have more listeners so that it can consume messages faster. but once the listener drops, the application is not bringing the count backup. |
From where are you getting this expectation? What mechanism do you believe will be starting more listeners (which is what will cause an increase in the number of channels)?
Most importantly, what leads you to believe that MQ is the mechanism which will drive the application to
Quote: |
start more instances of channel and have more listeners so that it can consume messages faster |
_________________ Honesty is the best policy.
Insanity is the best defence. |
|
Back to top |
|
 |
|