Zope var/ data.fs mamimum storage of content
I have bought the Zope Bible by Michael R . Bernstein and Collegues and eventhough its slightly outdated I still cant: 1) determine the maximum total size of var/ directory . 2) Is the below the default number of Zope Instance I can have running at the same time. I my z2.py file # The size of the thread pool, if ZODB3 is used. NUMBER_OF_THREADS=4 Does this mean I can only hace 4 instances <4 content authors users simultaneously using Zope>. Thus can this be increased to the total number of Zope Content Authors and Myself as Admin. 3) What is the ( LFS )I assume its stands for Local FileStorage plz confirm and how can determin if my File Storage exceed 2G 4) How to verify my python and libc have built - in LFS support My Database Location is /usr/local/bin/zope/Zope-2.6.1-linux2-x86/var/Data.fs My Database Size 10.6 M I will upgrade to Zope 2.6.2 after Xmas as I have a live Zope Site running with Apache 1.3 and I have recieved the zdaemon SIGXFSZ error twice but cant trap the problem So to date I have just make daily backups > using the export# to my development serever and thus re-install and place the bb.zexp file into Zope's import folder and when Zope is up import as neccessary I know this crude but is works while I try and figure this problem out . Cheers Chuck Chuck Amadi, ICT Systems Programmer, Brecon Beacons National Park Authority Direct Line: 01874 620440 FAX: 01874 622574 EMAIL: chuck.amadi@breconbeacons.org _______________________________________ \ \ \ Chuck Amadi,ICT Systems Programmer \ __________ | \ \ / \___-=O`/|O`/___| \ . \_______\ / | / ) / / `/-==__ _/__|/__=--| / / * \ | | / / (o) /______________________________________/ Nid yw'r farn a fynegir gan anfonwr y neges hon o anghenraid yn adlewyrchu barn Awdurdod Parc Cenedlaethol Bannau Brycheiniog. Neges yw hon a fwriadwyd ar gyfer y derbynnydd/derbynyddion yn unig ac fe'i hanfonir yn gyfrinachol; os ydych yn ei dderbyn mewn camgymeriad, a fyddech gystal %/1??iso8859-15?â rhoi gwybod i ni (yn it@breconbeacons.org) ac yna dil%/1??iso8859-15?ëwch bob copi. The views expressed by the sender of this message don't necessarily represent those of Brecon Beacons National Park Authority. This message is intended for the addressee(s) only and is sent in confidence; if you receive it in error, please can you let us know (at it@breconbeacons.org) and then destroy all copies. --------------------------------------------------------------------------- Brecon Beacons National Park Authority takes every care to keep its network free from viruses. All emails are scanned and verified virus-free by Sophos Anti-Virus software. *** IT IS THE RECIPIENTS RESPONSIBILITY TO CHECK ALL MESSAGES FOR VIRUSES ***
On Thu, 2003-11-27 at 02:53, Chuck Aamdi wrote:
I have bought the Zope Bible by Michael R . Bernstein and Collegues and eventhough its slightly outdated I still cant:
1) determine the maximum total size of var/ directory .
That depends primarily on large file support, discussed below. Other than that, your limitations are practical issues: hard drive size, filesystem/OS limits, etc.
2) Is the below the default number of Zope Instance I can have running at the same time.
I my z2.py file
# The size of the thread pool, if ZODB3 is used. NUMBER_OF_THREADS=4
Threads and instances are not the same thing at all. An instance is a running zope that has its own configuration, data store, etc. Each instance is launched independently and you can run as many as you have RAM to support. Threads are processes within each instance that allow you to handle multiple requests at the same time. You can have as few as two and probably shouldn't go higher than eight unless you know why you need to. You can run different instances with different numbers of threads. Thread usage increases memory consumption, so you don't want to run very many more than you need.
3) What is the ( LFS )I assume its stands for Local FileStorage plz
It could stand for other things, but in this context you're probably right.
how can determin if my File Storage exceed 2G
In the ZMI, look at the Database screen in the Control Panel folder. In the filesystem, look in the var directory of your instance and look at the size of Data.fs
4) How to verify my python and libc have built - in LFS support
Here's one test: http://www.ornl.gov/lists/mailing-lists/tru64-unix-managers/2003/05/msg00082... More info: http://www.python.org/doc/current/lib/posix-large-files.html
I will upgrade to Zope 2.6.2 after Xmas as I have a live Zope Site running with Apache 1.3 and I have recieved the zdaemon SIGXFSZ error twice but cant trap the problem
Have you configured an event log?
So to date I have just make daily backups > using the export# to my development serever and thus re-install and place the bb.zexp file into Zope's import folder and when Zope is up import as neccessary I know this crude but is works while I try and figure this problem out
Yeah, that's pretty crude... not to mention painful. If you get any more information from your event log, I'd post that and the results of: # ps ax | grep zope # top -u zope BTW, you are packing your database regularly, aren't you? HTH, Dylan
participants (2)
-
Chuck Aamdi -
Dylan Reinhardt