[ZODB-Dev] Memory Errors reading large ZODB

2007-08-01 Thread Jim Carroll
Hi, I'm trying to iterate over all the comments in my discussion .fs and I'm getting different errors each time. The latest is Memory Error (direct fs access), sometimes it's trouble starting a thread (access through ZEO.) I'm running ZODB 3.3 on a FreeBSD system. I've tried doing periodic com

[ZODB-Dev] Re: Memory Errors reading large ZODB

2007-08-01 Thread Jim Carroll
Jim Carroll oublic.org> writes: > > > Hi, I'm trying to iterate over all > the comments in my discussion .fs > and I'm getting different errors > each time. The latest is Memory Error (direct > fs access), sometimes it's trouble > starting a thread (access through ZEO.) Here's an actual T

Re: [ZODB-Dev] Re: Memory Errors reading large ZODB

2007-08-01 Thread Alan Runyan
snip... > line 96, in > __setstate__ > Persistent.__setstate__(self, state) > MemoryError means you have run out of memory. check your jail or how much memory you have allocated. you can call cache minimize after a threshold.. maybe every 100 iterations. there are finer grain mechanisms to

Re: [ZODB-Dev] Re: Memory Errors reading large ZODB

2007-08-01 Thread Gary Poster
On Aug 1, 2007, at 4:16 PM, Alan Runyan wrote: snip... line 96, in __setstate__ Persistent.__setstate__(self, state) MemoryError means you have run out of memory. check your jail or how much memory you have allocated. you can call cache minimize after a threshold.. maybe every 100 i