Previous | Next --- Slide 41 of 63
Back to Lecture Thumbnails
TeBoring

Question: Why does it need to keep undo log for each step of the same memory location instead of just keeping the original value?

kayvonf

@TeBoring. Your suggestion is a nice potential optimization.

yongzuaw

@TeBoring: I think it depends on whether you are undoing the whole transaction (in this case your suggestion should work) or undoing the transactions partially when you see a conflict.

rutwikparikh

Eager versioning is preferred when we expect fewer conflicts since it has faster commits than aborts.

ToBeContinued

This is very much like a lower level (memory level) implementation of the distributed system logging mechanisms. In distributed systems, logging involves rather complicated issues like role back, when commits fail. I imagine it would be very expensive to implement this kind of operation in memory level.

tpassaro

Does eager versioning allow other processors to see the values set during this transaction? For instance, if CPU 1 initiates a transaction and writes to A, then CPU 2 reads A, will it receive the old or new value of A?