Re: [Vote] Bill Barker - Commons Proper Committer

2003-12-30 Thread Glenn Nielsen
to have his help and I think he'd like to help as well, but we need a vote it seems. So here's my +1. [ X ] +1, let him commit in Jakarta Commons Proper [ ] 0 [ ] -1, perhaps not, because -- Glenn Nielsen

Re: [lang] DateUtils proposal, standard date generators

2003-12-09 Thread Glenn Nielsen
I just imported into jakarta-commons-sandbox a component named Thread Benchmark (TBM). It is designed to make testing thread synchronization problems easier and as a clearing house for identifying thread synchronization problems, workarounds, and alternative solutions. The proposal can be found

Re: [sandbox] Commit Request for Sandbox

2003-12-09 Thread Glenn Nielsen
+1 Brian McCallister wrote: I would like to receive commit privileges on the jakarta-commons-sandbox in order to work on tbm I am already a db.apache.org committer. Thank You! -Brian McCallister - To unsubscribe, e-mail:

[TBM] Thread Benchmark example test results

2003-12-09 Thread Glenn Nielsen
I have posted some example Thread Benchmark test results at: http://www.apache.org/~glenn/ TBM still needs alot of work, there are only 6 benchmark tests so far. Three of them are for formatting a date, the results are interesting. Regards, Glenn

[Fwd: [ANNOUNCEMENT] Commons DBCP 1.1 released]

2003-10-23 Thread Glenn Nielsen
Thanks for all your hard work Dirk to resolve reported bugs and get this release out. Regards, GLenn Original Message Subject: [ANNOUNCEMENT] Commons DBCP 1.1 released Date: Wed, 22 Oct 2003 15:29:59 -0700 (PDT) From: Dirk Verbeeck [EMAIL PROTECTED] Reply-To: Jakarta Commons

[DBCP] cvs commit: jakarta-commons/dbcp/src/java/org/apache/commons/dbcp AbandonedObjectPool.java

2003-10-04 Thread Glenn Nielsen
This patch removed to much. Only the System.out should have been removed. The NoSuchElementException needs to be caught so that an exception with a message which makes sense to the user is thrown. There is no way to know what the NoSuchElementException means without diving into the code. This is

Re: [DBCP] cvs commit: jakarta-commons/dbcp/src/java/org/apache/commons/dbcp AbandonedObjectPool.java

2003-10-04 Thread Glenn Nielsen
After seeing the subsequent commit to PoolingDataSource where the message for a NoSuchElementException added text that the pool was exhausted, this looks fine. Ignore the below. Glenn Glenn Nielsen wrote: This patch removed to much. Only the System.out should have been removed

Re: [VOTE][DBCP] Release Plan for Commons-DBCP 2.0

2003-09-29 Thread Glenn Nielsen
- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- -- Glenn Nielsen [EMAIL PROTECTED] | /* Spelin donut madder| MOREnet

Re: [VOTE][DBCP] Release Plan for Commons-DBCP 2.0

2003-09-29 Thread Glenn Nielsen
] For additional commands, e-mail: [EMAIL PROTECTED] -- -- Glenn Nielsen [EMAIL PROTECTED] | /* Spelin donut madder| MOREnet System Programming | * if iz ina coment. | Missouri Research and Education

Re: JDBC AbandonedObjectPool and PoolableConnectionFactory

2003-09-28 Thread Glenn Nielsen
This should be fixed in CVS now. Glenn John McNally wrote: yes that looks like a correct observation. The synchronization scope could be reduced. john mcnally On Wed, 2003-09-24 at 14:47, Brad Johnson wrote: Hello, I noticed the latest commit to AbandonedObjectPool.java in the Jakarta Commons

Re: cvs commit: jakarta-commons/dbcp/src/java/org/apache/commons/dbcp AbandonedObjectPool.java AbandonedTrace.java

2003-09-26 Thread Glenn Nielsen
This triggers a ConcurrentModificationException, IMHO I would synchronize on the pool itself like this: synchronized(this) { trace.remove(obj); } Dirk Glenn Nielsen wrote: Dirk Verbeeck wrote: Shouldn't you synchronize on the pool itself instead of on the trace

Re: cvs commit: jakarta-commons/dbcp/src/java/org/apache/commons/dbcp AbandonedObjectPool.java AbandonedTrace.java

2003-09-25 Thread Glenn Nielsen
Dirk Verbeeck wrote: Shouldn't you synchronize on the pool itself instead of on the trace list in AbandonedObjectPool? borrowObject and returnObject are synchronized on trace invalidateObject and removeAbandoned are synchronized on the pool The synchronization required for using the

Re: [docs] Crappy build system

2003-08-14 Thread Glenn Nielsen
Henri Yandell wrote: Jakarta Commons build system for the website is very very crappy. Regardless of whether things move to Maven or some other look and feel, I'd like to check in the jars needed so that people don't have to go around hunting in jakarta-velocity, jakarta-site2 and who knows where

Re: [docs] Crappy build system

2003-08-14 Thread Glenn Nielsen
Henri Yandell wrote: Actually got to wonder if there's any point having build.properties.sample in this case. I'm not sure if the rest of build.properties does anything and these values could sit in build.properties itself [or in the build.xml]. Generally the build.properties file is not in CVS,

Re: [DBCP] AbandonedTrace - Connection Recovery

2003-07-23 Thread Glenn Nielsen
David Graham wrote: --- Laird J. Nelson [EMAIL PROTECTED] wrote: -Original Message- From: John McNally [mailto:[EMAIL PROTECTED] Why is this such a contentious issue? FWIW, because some users have business experience, and some do not. Those who do recognize that business *runs* on stopgap

Re: [DBCP] AbandonedTrace - Connection Recovery

2003-07-23 Thread Glenn Nielsen
Hope, Matthew wrote: I would disagree on one point. The idea of logging when a connection is closed due to garbage collection finalization strikes me as a good one (assuming the pool used is using a weakly referenced mapping otherwise garbage collection release of resources is going to be a real

Re: [DBCP] AbandonedTrace - Connection Recovery

2003-07-23 Thread Glenn Nielsen
John McNally wrote: [snip] On the implementation. I have not looked closely at the current implementation as it is not used by the pool that I added to dbcp and I was trying to start it as a simple implementation of the latest specification. But it would seem an implementation of this should

Re: [DBCP] AbandonedTrace - Connection Recovery

2003-07-23 Thread Glenn Nielsen
Juozas Baliuka wrote: /** * Get a db connection from the pool. * * If removeAbandoned=true, recovers db connections which * have been idle removeAbandonedTimeout. * * @return Object jdbc Connection */ As I remember we have decided to log stack trace, but not to

Re: [DBCP] AbandonedTrace - Connection Recovery

2003-07-22 Thread Glenn Nielsen
David Graham wrote: --- Serge Knystautas [EMAIL PROTECTED] wrote: David Graham wrote: IMO, a design that allows users to plugin behaviors, be they connection retrieval or otherwise, is the best solution. Then the question becomes whether to include a connection retrieval behavior in the DBCP

Re: [DBCP] AbandonedTrace - Connection Recovery

2003-07-21 Thread Glenn Nielsen
David Graham wrote: I fess up, I am the guilty party who added the ability to trace abandoned connections and recover them. ;-) Sorry to jump in late on this. I have been busy with other things. The motivation behind this was to allow a servlet container to continue operating normally even if

Re: [DBCP] AbandonedTrace - Connection Recovery

2003-07-21 Thread Glenn Nielsen
there is a design issue being discussed where consensus can not be reached there should be a VOTE. Regards, Glenn -- Glenn Nielsen [EMAIL PROTECTED] | /* Spelin donut madder| MOREnet System Programming | * if iz

Re: [DBCP] AbandonedTrace - Connection Recovery

2003-07-20 Thread Glenn Nielsen
Noel J. Bergman wrote: It appears clear that there are two camps, each with fairly strong views. Personally, I believe that both camps can be accomodated in a way that should satisfy both. DBCP should focus on core pooling behavior related to connections and prepared statements, and leave policy

Re: [5.0] fileupload 1.0 RC 1 API breakage

2003-06-04 Thread Glenn Nielsen
Martin Cooper wrote: I posted a patch to the Tomcat-Dev list yesterday which should fix this problem. Apparently, nobody on the Tomcat-Dev list paid any attention to my post. The methods in question have been deprecated for some time. I have not seen the patch email on tomcat-dev. Perhaps its in

Re: [VOTE] New Committer - John McNally

2002-06-15 Thread Glenn Nielsen
to do this directly? It may be a few days before I can merge the changes in. -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED] -- -- Glenn Nielsen

Re: jdbcpool

2002-06-04 Thread Glenn Nielsen
] -- -- Glenn Nielsen [EMAIL PROTECTED] | /* Spelin donut madder| MOREnet System Programming | * if iz ina coment. | Missouri Research and Education Network

Re: [dbcp] does not compile with JDK1.4.0

2002-05-28 Thread Glenn Nielsen
I'll take care of it since I broke it when I added the new DBCP features. :-) Glenn -- Glenn Nielsen [EMAIL PROTECTED] | /* Spelin donut madder| MOREnet System Programming | * if iz ina coment

[Fwd: [q.werty@laposte.net: Question about DBCP and JDBC 3.0]]

2002-05-24 Thread Glenn Nielsen
Forwarded to this list from my apache account. Original Message Subject: [[EMAIL PROTECTED]: Question about DBCP and JDBC 3.0] Date: Fri, 24 May 2002 06:19:22 -0700 From: Glenn Nielsen [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] First apologise me

Re: [dbcp]: Oracle too many open cursors error

2002-05-22 Thread Glenn Nielsen
(), -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED] -- -- Glenn Nielsen [EMAIL PROTECTED] | /* Spelin donut madder| MOREnet System Programming

Re: [PATCH] DBCP, tracking, reporting, and recovering abandoned connections

2002-05-16 Thread Glenn Nielsen
Is anyone interested in patches for DBCP? Glenn Nielsen wrote: I have expanded upon the work James House did to generate stack traces for abandoned db connections. (Thanks James) The patch he provided was refactored and some new features added. Three new DBCP parameters were added

Re: commons dbcp or pool problems

2002-02-24 Thread Glenn Nielsen
-- Glenn Nielsen [EMAIL PROTECTED] | /* Spelin donut madder| MOREnet System Programming | * if iz ina coment. | Missouri Research and Education Network

Re: commons dbcp or pool problems

2002-02-23 Thread Glenn Nielsen
-- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED] -- -- Glenn Nielsen [EMAIL PROTECTED] | /* Spelin donut madder| MOREnet System Programming

Re: Updated Filters Proposal

2002-02-22 Thread Glenn Nielsen
/ - Original Message - From: Glenn Nielsen [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, February 12, 2002 9:33 PM Subject: Updated Filters Proposal Here is a link to an updated Filters Proposal based on input received today. http://cvs.apache.org/viewcvs/~checkout

commons dbcp or pool problems

2002-02-22 Thread Glenn Nielsen
nightly from Feb 1, 2002. commons-dbcp nightly from Feb 1, 2002. Does anyone know of any bugs or changes in any of these which may be causing the general failure of pooling the dbcp connections? Thanks, Glenn -- Glenn Nielsen

Re: commons dbcp or pool problems

2002-02-22 Thread Glenn Nielsen
failed twice during the run of Tomcat before it ran out of db connections. Thanks, Glenn -- Glenn Nielsen [EMAIL PROTECTED] | /* Spelin donut madder| MOREnet System Programming | * if iz ina coment

Re: commons dbcp or pool problems

2002-02-22 Thread Glenn Nielsen
Glenn Nielsen wrote: Waldhoff, Rodney wrote: As you probably already know, the NoSuchElementException is telling you the pool has been exhausted (and the detail message suggests you've got the pool configured to block for some finite amount of time before giving up). The most

Re: commons dbcp or pool problems

2002-02-22 Thread Glenn Nielsen
page views per hour. Sigh... Glenn -- Glenn Nielsen [EMAIL PROTECTED] | /* Spelin donut madder| MOREnet System Programming | * if iz ina coment. | Missouri Research and Education Network

Re: OT: Helping Glenn (was Re: commons dbcp or pool problems)

2002-02-22 Thread Glenn Nielsen
will recommend that they change the application to regenerate and publish static pages based on changes to the data rather than implement caching. Glenn Lavandowska wrote: --- Glenn Nielsen [EMAIL PROTECTED] wrote: Worse than using sql within a JSP, the customer turned almost their entire web site

Re: Servlet Filters Proposal

2002-02-13 Thread Glenn Nielsen
[EMAIL PROTECTED] wrote: On Tue, 12 Feb 2002, Glenn Nielsen wrote: I have started putting together a proposal for Jakarta-Filters. Once this effort has been bootstrapped in jakarta-commons-sandbox this can be proposed to the PMC as a top level project if enough interest exists

Servlet Filters Proposal

2002-02-12 Thread Glenn Nielsen
. Regards, Glenn -- Glenn Nielsen [EMAIL PROTECTED] | /* Spelin donut madder| MOREnet System Programming | * if iz ina coment. | Missouri Research and Education Network