| From: | Alvaro Herrera <alvherre(at)commandprompt(dot)com> |
|---|---|
| To: | Robert Haas <robertmhaas(at)gmail(dot)com> |
| Cc: | Andres Freund <andres(at)anarazel(dot)de>, pgsql-hackers(at)postgresql(dot)org, Albe Laurenz <laurenz(dot)albe(at)wien(dot)gv(dot)at>, Kevin Grittner *EXTERN* <Kevin(dot)Grittner(at)wicourts(dot)gov> |
| Subject: | Re: Update on true serializable techniques in MVCC |
| Date: | 2009-12-16 18:14:22 |
| Message-ID: | 20091216181422.GH4156@alvh.no-ip.org |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-hackers |
Robert Haas escribió:
> On Wed, Dec 16, 2009 at 10:29 AM, Andres Freund <andres(at)anarazel(dot)de> wrote:
> > On Wednesday 16 December 2009 16:24:42 Robert Haas wrote:
> >> > Inserts and deletes follow the same protocol, obtaining an exclusive
> >> > lock on the row after the one being inserted or deleted. The result
> >> > of this locking protocol is that a range scan prevents concurrent
> >> > inserts or delete within the range of the scan, and vice versa.
> >> >
> >> > That sounds like it should actually work.
> >>
> >> Only if you can guarantee that the database will access the rows using
> >> some particular index. If it gets to the data some other way it might
> >> accidentally circumvent the lock. That's kind of a killer in terms of
> >> making this work for PostgreSQL.
> > Isnt the whole topic only relevant for writing access? There you have to
> > access the index anyway.
>
> Yeah, I guess you have to insert the new tuple. I guess while you
> were at it you might check whether the next tuple is locked...
So you'd have to disable HOT updates when true serializability was
active?
--
Alvaro Herrera http://www.CommandPrompt.com/
The PostgreSQL Company - Command Prompt, Inc.
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Scott Bailey | 2009-12-16 18:21:43 | Re: Range types |
| Previous Message | Scott Bailey | 2009-12-16 18:07:18 | Re: Range types |