MySQL Forums
Forum List  »  Performance

Re: Mysterious Cache Problem
Posted by: Rick James
Date: October 30, 2015 06:16PM

Are the "reads" plain SELECT? Or SELECT .. FOR UPDATE? Or SELECT .. LOCK IN SHARE MODE?

Is there a mixture of such in the same transaction?

In REPEATABLE_READ, this is possible (though arguably "wrong"):

BEGIN
SELECT -- get 1
SELECT FOR UPDATE -- get 1
((another connection updates the row))
SELECT FOR UPDATE -- get 2 -- not really "repeatable"
SELECT -- get 1 -- "repeatable"
COMMIT

Is that what you are seeing?

Suggest...
* Do not have long running transaction
* Do not mix SELECT types without understanding that the isolation modes get confused.

Options: ReplyQuote


Subject
Views
Written By
Posted
1395
October 29, 2015 12:47AM
630
October 29, 2015 03:04AM
Re: Mysterious Cache Problem
630
October 30, 2015 06:16PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.