You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now, BdbDB's handling of pending and prepared (but not commited) transactions is not correctly managing ObjectLocks and can potentially experience deadlocks.
The text was updated successfully, but these errors were encountered:
between the Fabric Store locks and the bdb locks.
This strips out a lot of pending transaction tables, which probably were
meant to help with recovering partial transactions after a failure.
However, we never implemented recovery protocols to use it and removing
it doesn't make the failure tolerance/recovery story any better/worse
than the MemoryDB implementation. So, for now, let's run with the
simplified implementation.
This should address #36, will close if I confirm it works after some
testing.
Right now,
BdbDB
's handling of pending and prepared (but not commited) transactions is not correctly managingObjectLocks
and can potentially experience deadlocks.The text was updated successfully, but these errors were encountered: