Re: [ZODB-Dev] Zeo Server as a single point of failure

2008-03-11 Thread Alan Runyan
in that vein, DirectoryStorage-behind-ZEO has worked perfectly for years... but this new stuff is very interesting! wishing we could get DirectoryStorage into svn.zope.org ~alan ___ For more information about ZODB, see the ZODB Wiki:

Re: [ZODB-Dev] Zeo Server as a single point of failure

2008-03-11 Thread David Pratt
Hi Alan. I am working on cleanup and will releasing a version with new licensing at some point in near future. I am working at this with bits of time I have between other work. Unfortunately, it had been left for a couple of years without attention and my interest is in keeping it up to date

Re: [ZODB-Dev] Re: ERROR ZODB.Connection Couldn't load state for 0x01

2008-03-11 Thread Chris Withers
Dylan Jay wrote: Chris Withers wrote: Dylan Jay wrote: I have a few databases being served out of a zeo. I restarted them in a routine operation and now I can't restart due to the following error Do you use cross database references? not to my knowledge. That doesn't mean you aren't ;-)

Re: [ZODB-Dev] Zeo Server as a single point of failure

2008-03-11 Thread David Pratt
Hi Alan. I'm keeping the thread on the list since you raised the issue here. There are several repositories of zope related code that exist outside of svn.zope.org. I have made the decision to host DirectoryStorage at sourceforge on the basis that I have committed to maintaining and

[ZODB-Dev] Re: zodb.zope.org

2008-03-11 Thread Martijn Faassen
Hey, Dirceu, this is great news! ZODB people, please help them! Regards, Martijn ___ For more information about ZODB, see the ZODB Wiki: http://www.zope.org/Wikis/ZODB/ ZODB-Dev mailing list - ZODB-Dev@zope.org

[ZODB-Dev] Re: Zeo Server as a single point of failure

2008-03-11 Thread Martijn Faassen
Hey, David Pratt wrote: [snip] I cannot work with sources in zope repository since it would require a contributor agreement with Zope Corp. I am unable to enter into this agreement for the forseeable future. The zif collective (zif.sourceforge.net) is a way that I may contribute back to the

Re: [ZODB-Dev] zodb.zope.org

2008-03-11 Thread Leonardo Santagada
On 09/03/2008, at 09:34, Dirceu Pereira Tiegs wrote: We stopped working (lack of time), but we're planning to do a two-person sprint next month on FISL (Fórum Internacional de Software Livre / Free Software International Forum, here in Brazil). Maybe it can be a two and a half person

[ZODB-Dev] Anyone mind looking over a bit of code?

2008-03-11 Thread Kenneth Miller
All, If it's ok, I'd like to post a bit of code on here with the hope of getting a bit of help. What i'm attempting to do is create a simple database layer for all of my applications to traffic data in and out of my ZODB. I'm writing quite a few different apps, 10+ and growing, that

Re: [ZODB-Dev] Anyone mind looking over a bit of code?

2008-03-11 Thread Gary Poster
Hi Kenneth. First, make sure you do a transaction.begin() (or transaction.abort()) before you view your database for a given operation. This will sync invalidations for a given transaction, even if it will only be a read transaction, and reset the MVCC view. The partial-view behavior