Re: [Zope-dev] Fault tolerance and thread-loss

2000-12-19 Thread Gilles Lavaux
#x27;[EMAIL PROTECTED]' <[EMAIL PROTECTED]> Date: Tuesday, December 19, 2000 12:51 AM Subject: [Zope-dev] Fault tolerance and thread-loss >I'm finding that my installation is blocking all requests after awhile. By >best guess would be that threads are being used and somehow be

Re: [Zope-dev] Fault tolerance and thread-loss

2000-12-18 Thread Dennis Nichols
At 12/18/00 09:58 PM, Tres Seaver wrote: >I'm not really replying to either question, but guessing at the >underlying cause of the problem: this smells *exactly* like the >behavior induced by the "multiple PUT/POST" race condition bug, >corrected by Evan Simpson's patched ZServer/HTTPServer.py: >

Re: [Zope-dev] Fault tolerance and thread-loss

2000-12-18 Thread Tres Seaver
;[EMAIL PROTECTED]> > Sent: Monday, December 18, 2000 7:00 PM > Subject: [Zope-dev] Fault tolerance and thread-loss > > > > I'm finding that my installation is blocking all requests after > > awhile. By best guess would be that threads are being used and > > som

Re: [Zope-dev] Fault tolerance and thread-loss

2000-12-18 Thread Christopher Petrilli
On 12/18/00 7:45 PM, "Chris McDonough" <[EMAIL PROTECTED]> wrote: > No. You shouldn't be leaking threads. Can you trace the thread leakage > down to a single Product? A likely place (or at least one I've seen) is people writing External Methods that grab a database connection, but never releas

Re: [Zope-dev] Fault tolerance and thread-loss

2000-12-18 Thread Chris McDonough
No. You shouldn't be leaking threads. Can you trace the thread leakage down to a single Product? - Original Message - From: "Jay, Dylan" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, December 18, 2000 7:00 PM Subject: [Zope-dev] Fault tolera

[Zope-dev] Fault tolerance and thread-loss

2000-12-18 Thread Jay, Dylan
I'm finding that my installation is blocking all requests after awhile. By best guess would be that threads are being used and somehow becoming permanently blocked. When all 4 are gone then the server is useless and has to be restarted. Seems to me this is a real problem for fault tolerance. Perh