If you are a heavy user of temporary tables in your applications, then there are some additional actions that you may need to perform.
Actions for heavy users of temporary tables
How to do it…
There are four main things to check, which are as follows:
- Make sure you run VACUUM on system tables or enable autovacuum to do this for you.
- Monitor running queries to see how many temporary files are active and how large they are.
- Tune the memory parameters. Think about increasing the temp_buffers parameter, but be careful not to over-allocate memory by doing so.
- Separate the temp table's I/O. In a query-intensive system, you may find that reads/writes to temporary files exceed reads/writes on permanent data tables and...