I want to vacuum a PostgreSQL database from PHP.
I have tried this:
pg_query($conn,"vacuum analyse;");
How can I tell if this works?
|
I want to vacuum a PostgreSQL database from PHP. I have tried this:
How can I tell if this works?
| ||||
|
feedback
|
|
First question: why did you do VACUUM FULL? It doesn't make sense. It should be practically never called. Second: Running vacuum from php (presumably webpage) can be problematic. Vacuum can easily take over 3 minutes, which is (if I recall correctly) standard timeout for web requests. The best solution is to use autovacuum. If you can't use autovacuum - schedule vacuumdb calls using cron. | |||||||||
feedback
|
|
Assuming your vacuum runs for more than a few seconds, you can run " | |||
|
feedback
|
|
I believe it doesn't return an error, it is probably working. Here are the docs on vacuum. http://www.postgresql.org/docs/current/interactive/sql-vacuum.html | ||||
|
feedback
|
|
Run this query before and after running the vacuum query. If 'age' is less after the vacuum than it was before, then the vacuum has run successfully.
| |||
|
feedback
|