[jboss-user] [JBossMQ] - Re: stale consumer on jboss MQ queue when ThreadPoolFullExce

adrian@jboss.org do-not-reply at jboss.com
Tue Dec 16 09:59:04 EST 2008


"jgmunoz8" wrote : Hi Adrian,
  | 
  | We are having the same problem with this, but uploading to the new version 4.2.3 GA will be a problem for us, we will have to make all the testing again and it will cost us a lot of time.
  | 
  | We have discuss the subject and we see two posible ways to solve the problem. The first one is if there is some patch that we can install in a easy way, it means that we don't have to recompile all the system, because it will cost as the same amount of time. Maybe, some easy change that we can make in the jboss server to kill this bug.
  | 

The patch is referenced on the JIRA issue. It means replacing one class in jbossmq.jar

anonymous wrote : 
  | The second conclusion, or the second way that we see to solve the problem is if there is some way to create a Script that can make a periodic checking over the ReceiversCount value, and if it's equal to 0, change it into 1 again, so it will began to work again. 
  | 
  | Thank you.

Monitoring the receivers count won't help since that regularly goes to zero
while the consumer is in the process of a receiving message or isn't in a receive()
at all.

Changing the receivers count (by re-inserting the receiver into the queue) 
won't help either because you'd still have an unacknowledged message in limbo.

Disconnecting and reconnecting the client would workaround the problem
since all unacknowledged messages would be NACKed back into the queue
when the connection is closed.

But you've still got the underlying problem that there is a thread somewhere
which is in an interrupted state and the oswego concurrent thread pool executor 
doesn't like that.

View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4196888#4196888

Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4196888



More information about the jboss-user mailing list