fix(UserMountCache): Set transaction isolation level to REPEATABLE_READ before executing insertIfNotExist without unique index#56929
Closed
provokateurin wants to merge 2 commits intomasterfrom
Conversation
…olation Signed-off-by: provokateurin <[email protected]>
…AD before executing insertIfNotExist without unique index Signed-off-by: provokateurin <[email protected]>
6bd8f19 to
8fac473
Compare
Contributor
|
Tested it locally like this:
Without this PR With this PR |
Member
Author
|
This can be used as a patch to mitigate the issue, but the real fix is still under development. |
Member
Author
|
Closing in favor of #56933 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
oc_mountsno longer has a unique index since #32877, so theinsertIfNotExistdoes not work properly and depends on consistent reads always getting the same data, which is not possible withREAD_COMMITTED(https://dev.mysql.com/doc/refman/9.2/en/innodb-transaction-isolation-levels.html).The proper fix is to add back the unique index, but with a hash of the mountpoint column (which was too long for the index and was the reason the unique index was removed). This type of workaround is already used for the
share_externaltable.All other
insertIfNotExistin server are fine, because they operate on tables with a unique index.