Update on true serializable techniques in MVCC - Mailing list pgsql-hackers

From Kevin Grittner
Subject Update on true serializable techniques in MVCC
Date
Msg-id 4B2788EA020000250002D51C@gw.wicourts.gov
Whole thread Raw
Responses Re: Update on true serializable techniques in MVCC
List pgsql-hackers
Just to make those who care aware of it, here is Michael Cahill's
Doctoral Thesis based on implementing Serializable Snapshot
Isolation in InnoDB using a refined version of the techniques
previously used in the Berkley DB (and previously discussed on this
list):
http://hdl.handle.net/2123/5353
For those who missed the previous discussion, or don't remember it
well, this technique uses non-blocking SIREAD locks, which allow
true serializable behavior without increasing blocking beyond what
is present in normal MVCC snapshot isolation (readers do not block
writers, and vice versa), but generates some false positive
serialization errors.  Apparently the number of false positives in
InnoDB is less than Berkeley DB because of the more fine-grained
locking in InnoDB.
Seriously, this post is just for the benefit of those who may be
interested in following these developments -- I don't have the
inclination or energy for another round of debate on the topic just
now.  :-/
-Kevin


pgsql-hackers by date:

Previous
From: Simon Riggs
Date:
Subject: Hot Standby and prepared transactions
Next
From: Scott Bailey
Date:
Subject: Re: Range types