| From: | Robert Haas <robertmhaas(at)gmail(dot)com> |
|---|---|
| To: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> |
| Cc: | pgsql-hackers(at)postgresql(dot)org |
| Subject: | Re: Inadequate thought about buffer locking during hot standby replay |
| Date: | 2012-11-12 14:23:45 |
| Message-ID: | CA+Tgmob6NS=jhz=y6NYnfqmfW5y6ten5YXi3WMOc9v3vwgkMCA@mail.gmail.com |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-hackers |
On Sun, Nov 11, 2012 at 6:24 PM, Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> wrote:
> I already pointed out the inconsistency in heap_xlog_freeze about
> whether a cleanup lock is needed. As is, this patch uses a cleanup
> lock, but I suspect that a regular lock is sufficient --- comments?
Well, according to storage/buffer/README:
1. To scan a page for tuples, one must hold a pin and either shared or
exclusive content lock. To examine the commit status (XIDs and status bits)
of a tuple in a shared buffer, one must likewise hold a pin and either shared
or exclusive lock.
That does indeed make it sound like an x-lock is enough.
--
Robert Haas
EnterpriseDB: http://www.enterprisedb.com
The Enterprise PostgreSQL Company
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Tom Lane | 2012-11-12 14:36:18 | Re: Inadequate thought about buffer locking during hot standby replay |
| Previous Message | Tom Lane | 2012-11-12 14:17:01 | Re: Proposal for Allow postgresql.conf values to be changed via SQL |