Re: [Proxool-developer] Re: Proxool behavior when max connection reached
UNMAINTAINED!
Brought to you by:
billhorsman
From: Bill H. <bi...@lo...> - 2004-05-13 13:12:52
|
Craig, On Thu, 2004-05-13 at 13:59, Craig Servin wrote: > Has any work been done on this. I need a similar behavior and might try to > implement it, but I do not want to duplicate effort. Work hasn't started on this, so feel free to contribute. The things to keep in mind are: 1) If hard limit = soft limit then behaviour is as it is now. Without performance impact. 2) If hard limit is reached then Proxool must refuse connections (throw SQLExceptions) as quickly as possible without too much processing. This ensures the server survives as long as possible under extremely heavy load. 3) We don't want to be creating too many threads to support this behaviour. Ideally, none at all. But if we do create any it should be a fixed amount not additional ones for each connection. If you need any help, feel free to post here. - Bill |