RE: [Zope] packing a data.fs from outside zope?
How does that work with ZEO? If you were to pack the ZSS ODB on the ZSS box, do you have to shut down zope on the ZSS box? How do ZEO Clients react to this? Sean -----Original Message----- From: Chris McDonough [mailto:chrism@digicool.com] Sent: Wednesday, May 16, 2001 9:08 AM To: sean.upton@uniontrib.com; anthony@interlink.com.au Cc: zope@zope.org Subject: Re: [Zope] packing a data.fs from outside zope? No. You'd need ZEO for that. ----- Original Message ----- From: <sean.upton@uniontrib.com> To: <chrism@digicool.com>; <anthony@interlink.com.au> Cc: <zope@zope.org> Sent: Wednesday, May 16, 2001 11:51 AM Subject: RE: [Zope] packing a data.fs from outside zope?
and this can be done with Zope running, and the ODB being used?
-----Original Message----- From: Chris McDonough [mailto:chrism@digicool.com] Sent: Tuesday, May 15, 2001 8:02 PM To: anthony@interlink.com.au Cc: zope@zope.org Subject: Re: [Zope] packing a data.fs from outside zope?
Here ya go, Anthony (untested, but I'm feeling confident tonight ;-):
from ZODB.DB import DB from ZODB.FileStorage import FileStorage s = FileStorage('Data.fs') db = DB(s) db.pack() db.close()
Anthony Baxter wrote:
Don't suppose anyone's produced a nice convenient "pack a data.fs file" script that's runnable from outside Zope?
Anthony
_______________________________________________ Zope maillist - Zope@zope.org http://lists.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://lists.zope.org/mailman/listinfo/zope-announce http://lists.zope.org/mailman/listinfo/zope-dev )
_______________________________________________ Zope maillist - Zope@zope.org http://lists.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://lists.zope.org/mailman/listinfo/zope-announce http://lists.zope.org/mailman/listinfo/zope-dev )
_______________________________________________ Zope maillist - Zope@zope.org http://lists.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://lists.zope.org/mailman/listinfo/zope-announce http://lists.zope.org/mailman/listinfo/zope-dev )
Zope doesn't need to run on the ZSS box. Only the storage server process. Clients ask the storage server process to pack its database. It does so. As its packing, operation continues more or less normally... there are a few caveats that I can't remember, but it more or less just works. I think clients cache writes during this time, but I'm not entirely certain. ----- Original Message ----- From: <sean.upton@uniontrib.com> To: <chrism@digicool.com> Cc: <zope@zope.org> Sent: Wednesday, May 16, 2001 12:16 PM Subject: RE: [Zope] packing a data.fs from outside zope?
How does that work with ZEO? If you were to pack the ZSS ODB on the ZSS box, do you have to shut down zope on the ZSS box? How do ZEO Clients react to this?
Sean
-----Original Message----- From: Chris McDonough [mailto:chrism@digicool.com] Sent: Wednesday, May 16, 2001 9:08 AM To: sean.upton@uniontrib.com; anthony@interlink.com.au Cc: zope@zope.org Subject: Re: [Zope] packing a data.fs from outside zope?
No. You'd need ZEO for that.
----- Original Message ----- From: <sean.upton@uniontrib.com> To: <chrism@digicool.com>; <anthony@interlink.com.au> Cc: <zope@zope.org> Sent: Wednesday, May 16, 2001 11:51 AM Subject: RE: [Zope] packing a data.fs from outside zope?
and this can be done with Zope running, and the ODB being used?
-----Original Message----- From: Chris McDonough [mailto:chrism@digicool.com] Sent: Tuesday, May 15, 2001 8:02 PM To: anthony@interlink.com.au Cc: zope@zope.org Subject: Re: [Zope] packing a data.fs from outside zope?
Here ya go, Anthony (untested, but I'm feeling confident tonight ;-):
from ZODB.DB import DB from ZODB.FileStorage import FileStorage s = FileStorage('Data.fs') db = DB(s) db.pack() db.close()
Anthony Baxter wrote:
Don't suppose anyone's produced a nice convenient "pack a data.fs
file"
script that's runnable from outside Zope?
Anthony
_______________________________________________ Zope maillist - Zope@zope.org http://lists.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://lists.zope.org/mailman/listinfo/zope-announce http://lists.zope.org/mailman/listinfo/zope-dev )
_______________________________________________ Zope maillist - Zope@zope.org http://lists.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://lists.zope.org/mailman/listinfo/zope-announce http://lists.zope.org/mailman/listinfo/zope-dev )
_______________________________________________ Zope maillist - Zope@zope.org http://lists.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://lists.zope.org/mailman/listinfo/zope-announce http://lists.zope.org/mailman/listinfo/zope-dev )
participants (2)
-
Chris McDonough -
sean.upton@uniontrib.com