RE: Thread starvation - pool / Throttle issue?

2008-08-08 Thread Brian Parkinson
- help from this forum is very much appreciated. Regards, Brian... From: Clinton Begin [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 06, 2008 11:33 AM To: user-java@ibatis.apache.org Subject: Re: Thread starvation - pool / Throttle issue? Yes, those

Thread starvation - pool / Throttle issue?

2008-08-06 Thread Brian Parkinson
Hello: So, I have things up and running under Java and iBATIS, but running into some starvation issue, and my server is locking up. When I dump threads, I see a bunch that are waiting for the connnection pool (see output #1 below) and as well, a bunch that are waiting on Throttle.increment (see

Re: Thread starvation - pool / Throttle issue?

2008-08-06 Thread Nicholoz Koka Kiknadze
Have a look at this thread: http://www.mail-archive.com/user-java@ibatis.apache.org/msg11828.html Good luck On Wed, Aug 6, 2008 at 4:47 PM, Brian Parkinson [EMAIL PROTECTED] wrote: Hello: So, I have things up and running under Java and iBATIS, but running into some starvation issue, and my

RE: Thread starvation - pool / Throttle issue?

2008-08-06 Thread Brian Parkinson
: Nicholoz Koka Kiknadze [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 06, 2008 8:56 AM To: user-java@ibatis.apache.org Subject: Re: Thread starvation - pool / Throttle issue? Have a look at this thread: http://www.mail-archive.com/user-java@ibatis.apache.org/msg11828.html Good luck On Wed

Re: Thread starvation - pool / Throttle issue?

2008-08-06 Thread Clinton Begin
... -- *From:* Nicholoz Koka Kiknadze [mailto:[EMAIL PROTECTED] *Sent:* Wednesday, August 06, 2008 8:56 AM *To:* user-java@ibatis.apache.org *Subject:* Re: Thread starvation - pool / Throttle issue? Have a look at this thread: http://www.mail-archive.com/user-java@ibatis.apache.org

RE: Thread starvation - pool / Throttle issue?

2008-08-06 Thread Brian Parkinson
To: user-java@ibatis.apache.org Subject: Re: Thread starvation - pool / Throttle issue? Pools handle closing connections, but you still have to call .close (or some higher level delegating method) to return the connection to the pool. The rules are always the same... if you open it / start

Re: Thread starvation - pool / Throttle issue?

2008-08-06 Thread Clinton Begin
To: user-java@ibatis.apache.org Subject: Re: Thread starvation - pool / Throttle issue? Pools handle closing connections, but you still have to call .close (or some higher level delegating method) to return the connection to the pool. The rules are always the same... if you open it / start

RE: Thread starvation - pool / Throttle issue?

2008-08-06 Thread Brian Parkinson
- thanks. parki... From: Clinton Begin [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 06, 2008 11:16 AM To: user-java@ibatis.apache.org Subject: Re: Thread starvation - pool / Throttle issue? Ah, if you're using Spring, then yes, it will take care of resource

Re: Thread starvation - pool / Throttle issue?

2008-08-06 Thread Clinton Begin
] *Sent:* Wednesday, August 06, 2008 11:16 AM *To:* user-java@ibatis.apache.org *Subject:* Re: Thread starvation - pool / Throttle issue? Ah, if you're using Spring, then yes, it will take care of resource allocation. But your statement was: but my understanding is that the DBCP connection

Re: Thread starvation - pool / Throttle issue?

2008-08-06 Thread Ian Zabel
[mailto:[EMAIL PROTECTED] Sent: Wednesday, August 06, 2008 9:52 AM To: user-java@ibatis.apache.org Subject: Re: Thread starvation - pool / Throttle issue? Pools handle closing connections, but you still have to call .close (or some higher level delegating method) to return the connection

Re: Thread starvation - pool / Throttle issue?

2008-08-06 Thread Larry Meadors
, 2008 9:52 AM To: user-java@ibatis.apache.org Subject: Re: Thread starvation - pool / Throttle issue? Pools handle closing connections, but you still have to call .close (or some higher level delegating method) to return the connection to the pool. The rules are always the same... if you

Re: Thread starvation - pool / Throttle issue?

2008-08-06 Thread Clinton Begin
/ /aop:config Appreciated - regards - parki... From: Nicholoz Koka Kiknadze [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 06, 2008 8:56 AM To: user-java@ibatis.apache.org Subject: Re: Thread starvation - pool / Throttle issue? Have a look