Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Increase performance of backout of dead record version (or undo of just created primary record version) when backversions chain is too long [CORE4935] #5226

Closed
firebird-automations opened this issue Sep 17, 2015 · 4 comments

Comments

@firebird-automations
Copy link
Collaborator

Submitted by: @hvlad

Function list_staying() used in backout and undo processes have complexity O(N^2), where N is the number of back versions.

There is a way to reduce complexity down to O(N) in most cases. Specifically - when current transaction (which does backout
or undo) already own the record (i.e. primary record version is marked by current transaction) there is guarantee that no other
transaction will try to backout\undo the record.

Another improvement is to cut and cleanup tail of the back-versions chain at point where it is legal

Commits: f7e248c FirebirdSQL/fbt-repository@886459f

@firebird-automations
Copy link
Collaborator Author

Modified by: @hvlad

assignee: Vlad Khorsun [ hvlad ]

@firebird-automations
Copy link
Collaborator Author

Modified by: @hvlad

status: Open [ 1 ] => Resolved [ 5 ]

resolution: Fixed [ 1 ]

Fix Version: 3.0 RC 1 [ 10584 ]

@firebird-automations
Copy link
Collaborator Author

Modified by: @pcisar

status: Resolved [ 5 ] => Closed [ 6 ]

@firebird-automations
Copy link
Collaborator Author

Modified by: @pavel-zotov

status: Closed [ 6 ] => Closed [ 6 ]

QA Status: No test => Cannot be tested

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment