|
RSS Feed - WebSphere MQ Support
|
RSS Feed - Message Broker Support
|
 |
|
cannot find in BOQ , Dequeued failed message. |
« View previous topic :: View next topic » |
Author |
Message
|
vickas |
Posted: Fri Nov 29, 2013 6:05 am Post subject: cannot find in BOQ , Dequeued failed message. |
|
|
Centurion
Joined: 18 Aug 2013 Posts: 126
|
Am calling a web service in the message flow with trace files before calling the service and after it( I have connected all the 3 terminals to the trace ) am not getting any response from the service and i get an exception @ input node saying
ExceptionList
RecoverableException
File:CHARACTER:/build/S700_P/src/DataFlowEngine/ImbMqInputNode.cpp
Line:INTEGER:2129
Function:CHARACTER:ImbCommonInputNode::eligibleForBackout
Type:CHARACTER:ComIbmMQInputNode
Name:CHARACTER:com/icbc/edl/esb/flow/sync/providerAdapter/EDL_AdjudicatedBirthCertificateProvider#FCMComposite_1_1
Label:CHARACTER:com.icbc.edl.esb.flow.sync.providerAdapter.EDL_AdjudicatedBirthCertificateProvider_v1.0.0.AdjudicatedBirthCertificate
Catalog:CHARACTER:BIPmsgs
Severity:INTEGER:3
Number:INTEGER:2652
Text:CHARACTER:Dequeued failed message. Propagating a message to the failure terminal
I have a BOQ with threshold Q =3, even that is not being populated .
I have a compute node calling a java routine just before calling the service ,is that creating a problem ?
I have a trycatch node before compute node with trace file to the catch terminal, even this trace is not being populated. Trace files after the webservice request are not being populated.
where is my failed message is being populated ?
what is the reason for this happening ?
is this beacuse of any looping in my flow ? |
|
Back to top |
|
 |
vickas |
Posted: Fri Nov 29, 2013 11:59 am Post subject: |
|
|
Centurion
Joined: 18 Aug 2013 Posts: 126
|
I could find the following error in logs
[Thread 5914] (Msg 1/1) BIP2155I: About to 'create ' the deployed resource 'MSG_SPLITTER' of type '.SUBFLOW'.
Nov 29 05:56:42 esb_test_svr user:info IIB[2687048]: IBM Integration Bus v9000 (ESBDEVBKR.UBA_NEFT) [Thread 5914] (Msg 1/1) BIP2155I: About to 'create ' the deployed resource 'gen.process_docn_' of type '.SUBFLOW'.
Nov 29 05:56:42 esb_test_svr user:info IIB[2687048]: IBM Integration Bus v9000 (ESBDEVBKR.UBA_NEFT) [Thread 5914] (Msg 1/1) BIP2155I: About to 'create ' the deployed resource 'PAYETZCLR_ExceptionFlow' of type '.SUBFLOW'.
Nov 29 05:56:42 esb_test_svr user:info IIB[2687048]: IBM Integration Bus v9000 (ESBDEVBKR.UBA_NEFT) [Thread 5914] (Msg 1/1) BIP2155I: About to 'create ' the deployed resource 'AGGR_MSGS' of type '.MSGFLOW'.
Nov 29 05:56:42 esb_test_svr user:info IIB[2687048]: IBM Integration Bus v9000 (ESBDEVBKR.UBA_NEFT) [Thread 5914] (Msg 1/1) BIP2155I: About to 'create ' the deployed resource 'PY_E_' of type '.MSGFLOW'.
Nov 29 05:56:42 esb_test_svr user:info IIB[2687048]: IBM Integration Bus v9000 (ESBDEVBKR.UBA_NEFT) [Thread 5914] (Msg 1/1) BIP2155I: About to 'change ' the deployed resource 'PY_E_' of type '.MSGFLOW'.
Nov 29 05:56:43 esb_test_svr user:info IIB[2687048]: IBM Integration Bus v9000 (ESBDEVBKR.UBA_NEFT) [Thread 5914] (Msg 1/1) BIP2154I: Execution group finished with Configuration message.
Nov 29 05:45:52 loopback user:err|error IIB[1769904]: IBM Integration Bus v9000 (ESBDEVBKR.4680f8bc-4101-0000-0080-fd001831b47c) [Thread 12618] (Msg 1/1) BIP2228E: Seve
re error: /build/slot1/S000_P/src/CommonServices/Unix/ImbAbend.cpp 1126 signal received Abend file: /var/mqsi/common/errors/ESBDEVBKR.4680f8bc-4101-0000-0080-fd001831b4
7c.1769884.23458.abend action: abort
but thefd001831b4
7c.1769884.23458.abend comprises of information of different flow which is within the same execution group. |
|
Back to top |
|
 |
Esa |
Posted: Sat Nov 30, 2013 10:49 am Post subject: Re: cannot find in BOQ , Dequeued failed message. |
|
|
 Grand Master
Joined: 22 May 2008 Posts: 1387 Location: Finland
|
vickas wrote: |
Text:CHARACTER:Dequeued failed message. Propagating a message to the failure terminal
I have a BOQ with threshold Q =3, even that is not being populated .
|
By wiring the failure terminal you have explicitly configured the flow not to backout the message but propagate it to failure terminal instead.
The original ExceptionList that tells what went wrong in the flow is the one that is propagated to catch terminal. You need to capture that. |
|
Back to top |
|
 |
vickas |
Posted: Wed Dec 04, 2013 6:30 am Post subject: |
|
|
Centurion
Joined: 18 Aug 2013 Posts: 126
|
How to know the cause for abend/core files generation?
My research says that either infinite looping/retrieving large volumes from DB/less memory availbility might be the reasons.
IN My case ,
Abend files are being generated v.rarely and not regularly. only for 1 out of 10 messages , abend file is being generated.
Am not knowing when its being generated and unable to recreate the problem(abend file) too..
How shall i resolve the problem ??
how come abend files are generated on irregular basis??.. If the flow has something that is really really bad , abend file has to be generated each and then when i run the flow but this is not happening!! ! |
|
Back to top |
|
 |
Vitor |
Posted: Wed Dec 04, 2013 6:39 am Post subject: |
|
|
 Grand High Poobah
Joined: 11 Nov 2005 Posts: 26093 Location: Texas, USA
|
vickas wrote: |
How to know the cause for abend/core files generation?
My research says that either infinite looping/retrieving large volumes from DB/less memory availbility might be the reasons.
IN My case ,
Abend files are being generated v.rarely and not regularly. only for 1 out of 10 messages , abend file is being generated.
Am not knowing when its being generated and unable to recreate the problem(abend file) too..
How shall i resolve the problem ??
how come abend files are generated on irregular basis??.. If the flow has something that is really really bad , abend file has to be generated each and then when i run the flow but this is not happening!! ! |
Don't double post!  _________________ Honesty is the best policy.
Insanity is the best defence. |
|
Back to top |
|
 |
|
|
 |
|
Page 1 of 1 |
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|
|
|