"Mikael Carneholm" <[EMAIL PROTECTED]> writes:
> Btw, check you logfile for hints regarding increasing max_fsm_pages, and
> consider increasing checkpoint_segments as well. You could also play
> with more aggressive bgwriter_* params to reduce the risk for long
> vacuum pauses.

Yeah, checkpoint_segments is a really critical number for any
write-intensive situation.  Pushing it up to 30 or more can make a big
difference.  You might want to set checkpoint_warning to a large value
(300 or so) so you can see in the log how often checkpoints are
happening.  You really don't want checkpoints to happen more than about
once every five minutes, because not only does the checkpoint itself
cost a lot of I/O, but there is a subsequent penalty of increased WAL
traffic due to fresh page images getting dumped into WAL.

                        regards, tom lane

---------------------------(end of broadcast)---------------------------
TIP 9: In versions below 8.0, the planner will ignore your desire to
       choose an index scan if your joining column's datatypes do not
       match

Reply via email to