ASG
IBM
Zystems
Cressida
Icon
Netflexity
 
  MQSeries.net
Search  Search       Tech Exchange      Education      Certifications      Library      Info Center      SupportPacs      LinkedIn  Search  Search                                                                   FAQ  FAQ   Usergroups  Usergroups
 
Register  ::  Log in Log in to check your private messages
 
RSS Feed - WebSphere MQ Support RSS Feed - Message Broker Support

MQSeries.net Forum Index » General IBM MQ Support » lingering process with hints of mq problems

Post new topic  Reply to topic
 lingering process with hints of mq problems « View previous topic :: View next topic » 
Author Message
ranstice
PostPosted: Wed Sep 25, 2002 10:58 am    Post subject: lingering process with hints of mq problems Reply with quote

Newbie

Joined: 24 Mar 2002
Posts: 8

Hi,

We have had a production problem for about 2 months now with a C process that lingers. In the middle of processing it sleeps - but never in the same place. Note this process is running parallel to 25 other processes - so we're of the belief this has something to do with timing or maybe a conflicted mq thread(??) - but we can't pinpoint it.

Today we used the modular debugger to get output (mvb). This is the output:

ffbee7f8 libc.so.1`_lwp_sema_wait+8(354e68, fefbe000, 0, 354da8, 24d54, 0)
ffbee858 libthread.so.1`_swtch+0x424(354da8, 354da8, fefbe000, 5, 1000, ff3c5f64)
ffbee8b8 libthread.so.1`_mutex_adaptive_lock+0x160(fefc98ec, 4c00, 1000, fffeffff, 1, 4d58)
ffbee918 libthread.so.1`_cmutex_lock+0x70(fe7be5f8, fefbe000, 0, fe74291c, 0, 0)
ffbee978 libc.so.1`free+0x18(38f128, 0, 0, 0, 0, 0)
ffbee9d8 libclntsh.so.8.0`epc_exit_handler+0x17c(fee5aa8c, 0, ff250ee8, fe71bc0c, 0, 0)
ffbeea38 libc.so.1`_exithandle+0x8c(fe7bc5d0, 3, fefbe000, 1, 2ccd8, fe7ba000)
ffbeea98 libc.so.1`exit+0x24(a, ff1f3dec, ff1fe5ec, 1, 2cc88, ff3c5f64)
ffbeeaf8 libmqmcs.so`xehInterpretSavedSigaction+0x49c(ff216668, ff216b28, ff216bd8, ffbeee30, ff1f3dec, a)
ffbeeb98 libmqmcs.so`xehExceptionHandler+0x138(a, ffbef0e8, ffbeee30, ff1f3dec, a, 1)

ffbeec98 libthread.so.1`__sighndlr+0xc(a, ffbef0e8, ffbeee30, ff11c874, 354e4c, 354e3c)
ffbeecf8 libthread.so.1`sigacthandler+0x708(a, 354da8, 0, 0, 0, fefbe000)
ffbef168 libc.so.1`_smalloc+0x8c(10, fe7c07e0, 4, 10, 0, 0)
ffbef1c8 libc.so.1`malloc+0x20(c, 43, 43000000, fe78e734, 20, 0)
ffbef228 program_initialization+0x1c4(ffbef390, ffbef390, fe7bdc68, fe7bdc68, 0, a7c60)
ffbef2a0 main2+0x360(f, 82ff0, 3e5338, 486600, 458408, 0)
ffbef3c0 invokeCACSApi+0x2e4(a427c, 1, 123000, fe78e734, 0, a3fc0)
ffbef4a8 processAccount+0x130(a41fc, 1, ffffffff, fe7bdc68, 58, 5
ffbef520 coreProcessingLoop+0x324(a41fc, 1, 354c00, 64, 0, 0)
ffbef590 main+0x7c(1, ffbef664, ffbef66c, a8da4, 0, 0)
ffbef600 _start+0x5c(0, 0, 0, 0, 0, 0)

We end up with the `_lwp_sema_wait when we do a truss on the PID. All our mq statements occur before we do invokeCACSApi (including a commit).

What is this xehExceptionHandler? Is this mq?

Should our process have a function that is invoked when an exception like this happens? If so, how would that function be called?

ANY assistance is greatly appreciated.
Thanks in advance,
Robin
Back to top
View user's profile Send private message AIM Address Yahoo Messenger MSN Messenger
dgolding
PostPosted: Wed Sep 25, 2002 10:21 pm    Post subject: Reply with quote

Yatiri

Joined: 16 May 2001
Posts: 668
Location: Switzerland

Hi,

lwp_sema_wait sounds about right for an MQ process - it's waiting on a semaphore, doing a MQGET with a wait until a message arrives. This is normal. The xeh stuff are supplied by IBM I believe (they're in the MQ shared object so they must be )

When you say lingering, do you mean hanging - it does not respond to a command? Or what?

regards

Don
Back to top
View user's profile Send private message Visit poster's website
ranstice
PostPosted: Thu Sep 26, 2002 8:53 am    Post subject: hanging Reply with quote

Newbie

Joined: 24 Mar 2002
Posts: 8

hi,

yes - we've been using the term lingering here - but it's hanging. or in a continuous sleep.

what is odd is that we have done all our mq gets and committed before we see this lingerer.

for example - our program takes messages off a queue, commits, and then calls an api. it's while we are in the api that we are seeing this sema sleep. yes, we are still connected to mq - but there aren't any gets taking place.

we do have 26 parallel processes doing the same tasks. is it possible that memory is getting hosed in mq and inadvertently affecting a process connected to mq?

any suggestions on how to debug? we seem to 'hang' in a different place in our code each time.

thanks!
-robin
Back to top
View user's profile Send private message AIM Address Yahoo Messenger MSN Messenger
dgolding
PostPosted: Thu Sep 26, 2002 10:23 pm    Post subject: Reply with quote

Yatiri

Joined: 16 May 2001
Posts: 668
Location: Switzerland

"we do have 26 parallel processes doing the same tasks. is it possible that memory is getting hosed in mq and inadvertently affecting a process connected to mq? "

In theory, no - as the agent protection mechanism prevents you connecting directly to MQ IPC resources. This is the "amqzlaa" processes you see in a "ps" - your process connects to it, and this does the actual writing of mq shared memory and the like. This is to prevent your process corrupting MQ, but it can work both ways I suppose

Unless of course, you're using a MQCONNX connection, which connects directly to MQ without an agent.....
Back to top
View user's profile Send private message Visit poster's website
Display posts from previous:   
Post new topic  Reply to topic Page 1 of 1

MQSeries.net Forum Index » General IBM MQ Support » lingering process with hints of mq problems
Jump to:  



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
Protected by Anti-Spam ACP
 
 


Theme by Dustin Baccetti
Powered by phpBB © 2001, 2002 phpBB Group

Copyright © MQSeries.net. All rights reserved.