vBulletin Search Engine Optimization
| |||||||
| Register | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| Hi all, I'm migrating our DDBB from postgresql 7.4 to postgresql 8.1. In postgreql 7.4 we don't have autovaccum running. So, every night before doing the daily backup we do a "vaccuumdb -f -z" for each DB. My doubt is, the autovaccuum with the version 8.1 is started by default and I don't know how often I should perform the "vaccuumdb -f -z" or now it's not necessary to do it at all. Thank you very much -- Arnau ---------------------------(end of broadcast)--------------------------- TIP 1: if posting/reading through Usenet, please send an appropriate subscribe-nomail command to majordomo@postgresql.org so that your message can get through to the mailing list cleanly |
| ||||
| Arnau wrote: > I'm migrating our DDBB from postgresql 7.4 to postgresql 8.1. In > postgreql 7.4 we don't have autovaccum running. So, every night before > doing the daily backup we do a "vaccuumdb -f -z" for each DB. My doubt > is, the autovaccuum with the version 8.1 is started by default and I > don't know how often I should perform the "vaccuumdb -f -z" or now > it's not necessary to do it at all. First off, you should never really need vacuumdb -f, in fact autovacuum doesn't do full vacuums, rather it only does the standard vacuum. In theory autovacuum should perform all the vacuuming that is needed, however, in practice this isn't always the case. First the most people find the default thresholds for autovacuum in 8.1 are too conservative and second it can be a bit hard to monitor what autovacuum is doing. Both of these issues are improved in 8.2. In summary, try it and see. ---------------------------(end of broadcast)--------------------------- TIP 2: Don't 'kill -9' the postmaster |