My zope database is getting larger and close to 2GB, i want to figure out a way to handle it. First i want to find out how much space each directoy takes inside zope database. How can i find out that? Thank
- pack the ZODB - install your Zope with a Python version that has largefile support built-in (see mailing list archives - FAQ!) -aj --On Mittwoch, 28. Januar 2004 11:15 Uhr -0500 Jianping Zhu <jzhu@fisher.forestry.uga.edu> wrote:
My zope database is getting larger and close to 2GB, i want to figure out a way to handle it. First i want to find out how much space each directoy takes inside zope database. How can i find out that?
Thank
_______________________________________________ Zope maillist - Zope@zope.org http://mail.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://mail.zope.org/mailman/listinfo/zope-announce http://mail.zope.org/mailman/listinfo/zope-dev )
On Wed, Jan 28, 2004 at 11:15:35AM -0500, Jianping Zhu wrote:
My zope database is getting larger and close to 2GB, i want to figure out a way to handle it. First i want to find out how much space each directoy takes inside zope database. How can i find out that?
With the default FileStorage, you can't really. next question? :-) -- Paul Winkler http://www.slinkp.com Look! Up in the sky! It's EGG-LIKE IDIOT REINDEER! (random hero from isometric.spaceninja.com)
On Wed, 28 Jan 2004 11:15:35 -0500 Jianping Zhu <jzhu@fisher.forestry.uga.edu> wrote:
My zope database is getting larger and close to 2GB, i want to figure out a way to handle it. First i want to find out how much space each directoy takes inside zope database. How can i find out that?
If the objects are fileish content then you could write a script which adds up their size (via the get_size method). This won't tell you exactly home much space it takes up in the ZODB, but it will tell you where most of the data is. -Casey
Thanks all for respones. I have zope 2.6.4 and python 2.1.3, is the 2GB still the upper limited size for this version of zope server? Thanks
--On Mittwoch, 28. Januar 2004 12:01 Uhr -0500 Jianping Zhu <jzhu@fisher.forestry.uga.edu> wrote:
Thanks all for respones. I have zope 2.6.4 and python 2.1.3, is the 2GB still the upper limited size for this version of zope server?
I did already the answer (Python + largefile support). -aj
Andreas Jung wrote:
--On Mittwoch, 28. Januar 2004 12:01 Uhr -0500 Jianping Zhu <jzhu@fisher.forestry.uga.edu> wrote:
Thanks all for respones. I have zope 2.6.4 and python 2.1.3, is the 2GB still the upper limited size for this version of zope server?
I did already the answer (Python + largefile support).
Python 2.1.3 doesn't support LFS on Windows. If you run on the Windows platform you probably want to concider upgrading Python to 2.2 (which supports LFS on Windows). -- Johan Carlsson Tel: + 46 8 31 24 94 Colliberty Mob: + 46 70 558 25 24 Torsgatan 72 Email: johanc@easypublisher.com SE-113 37 STOCKHOLM Skype: colliberty
Jianping Zhu wrote at 2004-1-28 12:01 -0500:
I have zope 2.6.4 and python 2.1.3, is the 2GB still the upper limited size for this version of zope server?
This is not a limit for a zope server version but may be a limit for your Python. Your Python may or may not be compiled with LargeFile support. Python 2.1.3 was (by default) compiled without. Search the archives on how to determine whether your Python supports Large Files. Consider upgrading to Python 2.3.3 and Zope 2.7, if it does not. -- Dieter
participants (6)
-
Andreas Jung -
Casey Duncan -
Dieter Maurer -
Jianping Zhu -
Johan Carlsson -
Paul Winkler