Re: [Zope] Zope Eats Memory
Are you using the Photo product? The "old" one. I've got a product based on the Photo product, and I'm starting to suspect that there is something wrong there that eats memory. Just checking. At 11:41 2001-10-25 -0400, you wrote:
I've been running Zope (with ZEO) on a Debian GNU/Linux box. Just today everything slowed to a crawl and it turned out that one python process was taking up 75% of system memory. Stopping and restarting Zope cured the problem. I'm doing some caching of DTML pages and MySQL queries.
Any idea why Zope would start doing this? Are there any preventative measures?
Thanks, Chris
_______________________________________________ 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 )
Aside from ZEO, I'm using only the Debian packages for Zope 2.3.3 and ZMySQLDA. Chris On Thu, 25 Oct 2001, Peter Bengtsson wrote:
Are you using the Photo product? The "old" one. I've got a product based on the Photo product, and I'm starting to suspect that there is something wrong there that eats memory. Just checking.
At 11:41 2001-10-25 -0400, you wrote:
I've been running Zope (with ZEO) on a Debian GNU/Linux box. Just today everything slowed to a crawl and it turned out that one python process was taking up 75% of system memory. Stopping and restarting Zope cured the problem. I'm doing some caching of DTML pages and MySQL queries.
Any idea why Zope would start doing this? Are there any preventative measures?
Thanks, Chris
_______________________________________________ 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 )
-----Original Message----- From: zope-admin@zope.org [mailto:zope-admin@zope.org]On Behalf Of Peter Bengtsson
Are you using the Photo product? The "old" one. I've got a product based on the Photo product, and I'm starting to suspect that there is something wrong there that eats memory. Just checking.
This apparently isn't Chris' problem since he's not running Photo, but for the record, the old Photo product most definitely eats memory, which was part of why I created the "new" Photo product. The old one stores rendered photo data as strings. Zope loaded the entire string into memory before serving it, which caused Zope to grow quite a bit. The new Photo product stores rendered photos as Zope Image objects (or ExtImage) which are served in pieces and thus do not eat memory. _______________________ Ron Bickers Logic Etc, Inc.
participants (3)
-
Chris Gray -
Peter Bengtsson -
Ron Bickers