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
Currently, only ChainedTuple is supported, which stores old versions to separate B+ trees, one for removal, and one for update.
For heavily updated tuples, storing old versions in separated B+ trees causes extra overhead on retrieving versions in removal or update B+ trees when getting visible tuples for update/lookup transactions or MVCC GC.
FatTuple stores all versions on the same page, which trades off space for performance. Based on the workload, we can adaptively transform the version storage for a tuple between off-row (ChainedTuple) and in-row (FatTuple).
The text was updated successfully, but these errors were encountered:
Enhancement
Currently, only ChainedTuple is supported, which stores old versions to separate B+ trees, one for removal, and one for update.
For heavily updated tuples, storing old versions in separated B+ trees causes extra overhead on retrieving versions in removal or update B+ trees when getting visible tuples for update/lookup transactions or MVCC GC.
FatTuple stores all versions on the same page, which trades off space for performance. Based on the workload, we can adaptively transform the version storage for a tuple between off-row (ChainedTuple) and in-row (FatTuple).
The text was updated successfully, but these errors were encountered: