Spring integration + Websphere MQ : the messages are not picking , event it has open input count, no exception, no uncommitted messages Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern) The Ask Question Wizard is Live! Data science time! April 2019 and salary with experience Should we burninate the [wrap] tag?How to send a message from Spring WS application to WebSphere JMS QueueSpring Integration: JMS Exception HandlingCould not fetch messages from Webpshere MQ sometimes even though the application and websphere mq is up and runningWebsphere 7 + Websphere MQ 7.X + Spring Integration + JMS - Message Listener stops reading messages from QueueSpring Integration queue is not getting message but channel is gettingSpring Integration is hanging WebSphere Liberty threadHow to consume JMS messages from the websphere application server using Spring JMSSpring integration : Not able to send the message to channelIBM MQ Open input count shows 2 for websphere MDB with max sessions 1 (Causing reordering of messages)How to postpone consuming of messages in spring integration
How to assign captions for two tables in LaTeX?
What are 'alternative tunings' of a guitar and why would you use them? Doesn't it make it more difficult to play?
Is the Standard Deduction better than Itemized when both are the same amount?
ListPlot join points by nearest neighbor rather than order
Are my PIs rude or am I just being too sensitive?
What is the longest distance a 13th-level monk can jump while attacking on the same turn?
Antler Helmet: Can it work?
How does cp -a work
Java 8 stream max() function argument type Comparator vs Comparable
Bonus calculation: Am I making a mountain out of a molehill?
Withdrew £2800, but only £2000 shows as withdrawn on online banking; what are my obligations?
WAN encapsulation
Single word antonym of "flightless"
Is there a way in Ruby to make just any one out of many keyword arguments required?
Should I discuss the type of campaign with my players?
Why was the term "discrete" used in discrete logarithm?
How to find all the available tools in macOS terminal?
Right-skewed distribution with mean equals to mode?
Should I call the interviewer directly, if HR aren't responding?
"Seemed to had" is it correct?
IndentationError when pasting code in Python 3 interpreter mode
What is this single-engine low-wing propeller plane?
Can a non-EU citizen traveling with me come with me through the EU passport line?
How to recreate this effect in Photoshop?
Spring integration + Websphere MQ : the messages are not picking , event it has open input count, no exception, no uncommitted messages
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)
The Ask Question Wizard is Live!
Data science time! April 2019 and salary with experience
Should we burninate the [wrap] tag?How to send a message from Spring WS application to WebSphere JMS QueueSpring Integration: JMS Exception HandlingCould not fetch messages from Webpshere MQ sometimes even though the application and websphere mq is up and runningWebsphere 7 + Websphere MQ 7.X + Spring Integration + JMS - Message Listener stops reading messages from QueueSpring Integration queue is not getting message but channel is gettingSpring Integration is hanging WebSphere Liberty threadHow to consume JMS messages from the websphere application server using Spring JMSSpring integration : Not able to send the message to channelIBM MQ Open input count shows 2 for websphere MDB with max sessions 1 (Causing reordering of messages)How to postpone consuming of messages in spring integration
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
I have a problem with the application we use.
Background:
Ours is a Messaging system, we use Websphere MQ 7.5.x and spring integration(XML, JMS)V5.0.6. the application that consumes the XML message and processes it ( million records per 2 hrs, with multiple nodes).
Problem:
It was working fine in our prod so far (around 2 years), but in recent days we are facing a problem of messages are not getting consumed.
0) the Connection b/w the application and MQ are available.
1) we are able to see the open input connection in the QUEUE Status.
2) When we stop the listener in the spring integration the input count reduces and when start the listener the input count increases.
3) Even though the open input count is available the messages are not getting consumed
4) There is no Exception in MQ side and application side (logs)
5) There are no uncommitted messages on the MQ side.
Solution (current workaround)
The only option is to restart the server. This reset the connection B/W MQ and application and the messages started flowing. but after some time it stops consuming again we have to restart the server
Resolution needed:
Is there any way to fix this issue? without restarting the server. basically avoiding would be great.
spring spring-boot spring-integration ibm-mq spring-jms
add a comment |
I have a problem with the application we use.
Background:
Ours is a Messaging system, we use Websphere MQ 7.5.x and spring integration(XML, JMS)V5.0.6. the application that consumes the XML message and processes it ( million records per 2 hrs, with multiple nodes).
Problem:
It was working fine in our prod so far (around 2 years), but in recent days we are facing a problem of messages are not getting consumed.
0) the Connection b/w the application and MQ are available.
1) we are able to see the open input connection in the QUEUE Status.
2) When we stop the listener in the spring integration the input count reduces and when start the listener the input count increases.
3) Even though the open input count is available the messages are not getting consumed
4) There is no Exception in MQ side and application side (logs)
5) There are no uncommitted messages on the MQ side.
Solution (current workaround)
The only option is to restart the server. This reset the connection B/W MQ and application and the messages started flowing. but after some time it stops consuming again we have to restart the server
Resolution needed:
Is there any way to fix this issue? without restarting the server. basically avoiding would be great.
spring spring-boot spring-integration ibm-mq spring-jms
Did the application change recently? You need to debug why the application is not picking up the messages from the queue.
– Roger
Mar 22 at 21:24
What changed "in recent days". Last change is first suspect.
– Morag Hughson
Mar 23 at 21:28
there was a patch update , not sure what is the patch details . we did a thread dump analysis and found that there is thread lock in the IBM jars . there was a ticket in IBM : www-01.ibm.com/support/docview.wss?uid=swg1IT15274 , we plan to upgrade the jar verison. thanks for you support morag hughson and roger
– vijaykarthik nagarajan
Mar 24 at 8:56
1
You should add an answer to your own question and cite the APAR and what the thread dump looked like.
– JoshMc
Mar 24 at 23:32
1
@MoragHughson thank you, fixed.
– JoshMc
Mar 24 at 23:32
add a comment |
I have a problem with the application we use.
Background:
Ours is a Messaging system, we use Websphere MQ 7.5.x and spring integration(XML, JMS)V5.0.6. the application that consumes the XML message and processes it ( million records per 2 hrs, with multiple nodes).
Problem:
It was working fine in our prod so far (around 2 years), but in recent days we are facing a problem of messages are not getting consumed.
0) the Connection b/w the application and MQ are available.
1) we are able to see the open input connection in the QUEUE Status.
2) When we stop the listener in the spring integration the input count reduces and when start the listener the input count increases.
3) Even though the open input count is available the messages are not getting consumed
4) There is no Exception in MQ side and application side (logs)
5) There are no uncommitted messages on the MQ side.
Solution (current workaround)
The only option is to restart the server. This reset the connection B/W MQ and application and the messages started flowing. but after some time it stops consuming again we have to restart the server
Resolution needed:
Is there any way to fix this issue? without restarting the server. basically avoiding would be great.
spring spring-boot spring-integration ibm-mq spring-jms
I have a problem with the application we use.
Background:
Ours is a Messaging system, we use Websphere MQ 7.5.x and spring integration(XML, JMS)V5.0.6. the application that consumes the XML message and processes it ( million records per 2 hrs, with multiple nodes).
Problem:
It was working fine in our prod so far (around 2 years), but in recent days we are facing a problem of messages are not getting consumed.
0) the Connection b/w the application and MQ are available.
1) we are able to see the open input connection in the QUEUE Status.
2) When we stop the listener in the spring integration the input count reduces and when start the listener the input count increases.
3) Even though the open input count is available the messages are not getting consumed
4) There is no Exception in MQ side and application side (logs)
5) There are no uncommitted messages on the MQ side.
Solution (current workaround)
The only option is to restart the server. This reset the connection B/W MQ and application and the messages started flowing. but after some time it stops consuming again we have to restart the server
Resolution needed:
Is there any way to fix this issue? without restarting the server. basically avoiding would be great.
spring spring-boot spring-integration ibm-mq spring-jms
spring spring-boot spring-integration ibm-mq spring-jms
edited Mar 24 at 9:06
vijaykarthik nagarajan
asked Mar 22 at 8:12
vijaykarthik nagarajanvijaykarthik nagarajan
14
14
Did the application change recently? You need to debug why the application is not picking up the messages from the queue.
– Roger
Mar 22 at 21:24
What changed "in recent days". Last change is first suspect.
– Morag Hughson
Mar 23 at 21:28
there was a patch update , not sure what is the patch details . we did a thread dump analysis and found that there is thread lock in the IBM jars . there was a ticket in IBM : www-01.ibm.com/support/docview.wss?uid=swg1IT15274 , we plan to upgrade the jar verison. thanks for you support morag hughson and roger
– vijaykarthik nagarajan
Mar 24 at 8:56
1
You should add an answer to your own question and cite the APAR and what the thread dump looked like.
– JoshMc
Mar 24 at 23:32
1
@MoragHughson thank you, fixed.
– JoshMc
Mar 24 at 23:32
add a comment |
Did the application change recently? You need to debug why the application is not picking up the messages from the queue.
– Roger
Mar 22 at 21:24
What changed "in recent days". Last change is first suspect.
– Morag Hughson
Mar 23 at 21:28
there was a patch update , not sure what is the patch details . we did a thread dump analysis and found that there is thread lock in the IBM jars . there was a ticket in IBM : www-01.ibm.com/support/docview.wss?uid=swg1IT15274 , we plan to upgrade the jar verison. thanks for you support morag hughson and roger
– vijaykarthik nagarajan
Mar 24 at 8:56
1
You should add an answer to your own question and cite the APAR and what the thread dump looked like.
– JoshMc
Mar 24 at 23:32
1
@MoragHughson thank you, fixed.
– JoshMc
Mar 24 at 23:32
Did the application change recently? You need to debug why the application is not picking up the messages from the queue.
– Roger
Mar 22 at 21:24
Did the application change recently? You need to debug why the application is not picking up the messages from the queue.
– Roger
Mar 22 at 21:24
What changed "in recent days". Last change is first suspect.
– Morag Hughson
Mar 23 at 21:28
What changed "in recent days". Last change is first suspect.
– Morag Hughson
Mar 23 at 21:28
there was a patch update , not sure what is the patch details . we did a thread dump analysis and found that there is thread lock in the IBM jars . there was a ticket in IBM : www-01.ibm.com/support/docview.wss?uid=swg1IT15274 , we plan to upgrade the jar verison. thanks for you support morag hughson and roger
– vijaykarthik nagarajan
Mar 24 at 8:56
there was a patch update , not sure what is the patch details . we did a thread dump analysis and found that there is thread lock in the IBM jars . there was a ticket in IBM : www-01.ibm.com/support/docview.wss?uid=swg1IT15274 , we plan to upgrade the jar verison. thanks for you support morag hughson and roger
– vijaykarthik nagarajan
Mar 24 at 8:56
1
1
You should add an answer to your own question and cite the APAR and what the thread dump looked like.
– JoshMc
Mar 24 at 23:32
You should add an answer to your own question and cite the APAR and what the thread dump looked like.
– JoshMc
Mar 24 at 23:32
1
1
@MoragHughson thank you, fixed.
– JoshMc
Mar 24 at 23:32
@MoragHughson thank you, fixed.
– JoshMc
Mar 24 at 23:32
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55295376%2fspring-integration-websphere-mq-the-messages-are-not-picking-event-it-has%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55295376%2fspring-integration-websphere-mq-the-messages-are-not-picking-event-it-has%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Did the application change recently? You need to debug why the application is not picking up the messages from the queue.
– Roger
Mar 22 at 21:24
What changed "in recent days". Last change is first suspect.
– Morag Hughson
Mar 23 at 21:28
there was a patch update , not sure what is the patch details . we did a thread dump analysis and found that there is thread lock in the IBM jars . there was a ticket in IBM : www-01.ibm.com/support/docview.wss?uid=swg1IT15274 , we plan to upgrade the jar verison. thanks for you support morag hughson and roger
– vijaykarthik nagarajan
Mar 24 at 8:56
1
You should add an answer to your own question and cite the APAR and what the thread dump looked like.
– JoshMc
Mar 24 at 23:32
1
@MoragHughson thank you, fixed.
– JoshMc
Mar 24 at 23:32