[ZCM] [ZC] 1734/ 1 Request "BTrees conflict resolution leads to
index inconsistencies"
Collector: Zope Bugs, Features,
and Patches ...
zope-coders-admin at zope.org
Tue Mar 22 14:47:58 EST 2005
Issue #1734 Update (Request) "BTrees conflict resolution leads to index inconsistencies"
Status Pending, Database/bug critical
To followup, visit:
http://www.zope.org/Collectors/Zope/1734
==============================================================
= Request - Entry #1 by d.maurer on Mar 22, 2005 2:47 pm
Zope indexes use code like this to remove document ids from
document lists:
def removeForwardIndexEntry(self, entry, documentId):
indexRow = self._index[entry]
indexRow.remove(documentId)
if not indexRow:
del self._index[entry]
If a concurrent transaction adds a document id to the same
"indexRow", then this document id can be lost because
it is inserted into a document list discarded by the other
transaction.
Under normal conditions, a "ConflictError" would result
because two transactions modify the same object
(the document list). However, the BTrees conflict resolution
prevents the "ConflictError" and allows the loss.
The result is an index inconsistency: the forward index ("_index")
entry and the backward one ("_unindex") not longer correspond.
Further operations lead to "unable to remove documentId
from document list" exceptions.
I suggest to tighten BTrees conflict resolution not to allow
concurrent insertions when a bucket was emptied.
==============================================================
More information about the Zope-Collector-Monitor
mailing list