From: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> |
---|---|
To: | Alvaro Herrera <alvherre(at)commandprompt(dot)com> |
Cc: | Simon Riggs <simon(at)2ndquadrant(dot)com>, Heikki Linnakangas <heikki(at)enterprisedb(dot)com>, pgsql-hackers(at)postgresql(dot)org, pgsql-patches(at)postgresql(dot)org |
Subject: | Re: [HACKERS] WAL logging freezing |
Date: | 2006-10-31 16:23:40 |
Message-ID: | 29850.1162311820@sss.pgh.pa.us |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers pgsql-patches |
Alvaro Herrera <alvherre(at)commandprompt(dot)com> writes:
> Simon Riggs wrote:
>> Ouch! We did discuss that also. Flushing the buffercache is nasty with
>> very large caches, so this makes autovacuum much less friendly - and
>> could take a seriously long time if you enforce the vacuum delay
>> costings.
> Hmm, isn't the buffer cache aware of a vacuum operation?
Yeah. What would probably happen is that we'd dump off most of the
dirtied pages to the kernel, which would likely still have a lot of them
in kernel buffers pending write. But then we'd have to fsync the table
--- so a physical write storm would ensue, which we have no way to
throttle.
I think the don't-truncate-clog approach is a much better answer.
regards, tom lane
From | Date | Subject | |
---|---|---|---|
Next Message | Teodor Sigaev | 2006-10-31 16:53:07 | Re: [HACKERS] Index greater than 8k |
Previous Message | Darcy Buskermolen | 2006-10-31 16:14:39 | Re: [HACKERS] Index greater than 8k |
From | Date | Subject | |
---|---|---|---|
Next Message | Jim C. Nasby | 2006-10-31 17:27:27 | Re: --single-transaction doc clarification |
Previous Message | Tom Lane | 2006-10-31 16:04:55 | Re: [HACKERS] WAL logging freezing |