| From: | Jeremy Harris <jgh(at)wizmail(dot)org> |
|---|---|
| To: | pgsql-performance(at)postgresql(dot)org |
| Subject: | Re: I/O on select count(*) |
| Date: | 2008-05-17 13:13:52 |
| Message-ID: | 482EDA10.5060603@wizmail.org |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-performance |
Tom Lane wrote:
> One additional point: this means that one transaction in every 32K
> writing transactions *does* have to do extra work when it assigns itself
> an XID, namely create and zero out the next page of pg_clog. And that
> doesn't just slow down the transaction in question, but the next few
> guys that would like an XID but arrive on the scene while the
> zeroing-out is still in progress.
>
> This probably contributes to the behavior that Simon and Josh regularly
> complain about, that our transaction execution time is subject to
> unpredictable spikes. I'm not sure how to get rid of it though.
A thread maintaining a pool of assigned and cleared pg_clog pages, ahead
of the immediate need? Possibly another job for an existing daemon
thread.
- Jeremy
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Greg Smith | 2008-05-18 05:28:26 | Re: I/O on select count(*) |
| Previous Message | Tom Lane | 2008-05-17 02:45:02 | Re: I/O on select count(*) |