AndrewMcLagan
AndrewMcLagan

Reputation: 13987

Why is the Plone data.fs file so large, will it effect performance?

Why is the Plone data.fs file so large, will it effect performance?

on our current site the file is over 8GB. I recently took over dev of this project on a legacy Plone 3 installation and there are huge performance bottle necks on the database.

My first impression is 8GB is huge...?


UPDATE

After the suggestions below and further investigation. Here are some stats from the server:

So what does that point to? The apache log files are huge at 7GB... i will install logrotate. But surely those stats: High disk IO... point to DB issues? Will packing alleviate this? Is packing dangerous on such a high volume production site?

Upvotes: 1

Views: 805

Answers (1)

tisto
tisto

Reputation: 1347

It is highly unlikely that the ZODB itself or the size of your database is responsible for the bad performance. I would recommend to pack your database as a first step. If you haven't done that on a regular basis before, packing will drastically decrease the size of the ZODB:

https://plone.org/documentation/faq/how-do-i-pack-the-zodb

Upvotes: 6

Related Questions