其他分享
首页 > 其他分享> > CMU15445 Lecture 19: Multi-Version Concurrency Control

CMU15445 Lecture 19: Multi-Version Concurrency Control

作者:互联网

MVCC不是单纯的用来实现并发控制,一般是用来与2PL,OCC,T/O结合使用

Multi-Version Concurrency Control

read-only txn can read a consistent snapshot without acquiring locks?txn可以做到像是全程在读一个静态的数据库

这里只依赖mvcc,达不到serializable,得去和2PL之类的结合,才能达到serializable
这里还不是serializable,为什么要等待?

Concurrency Control Protocol

Version Storage

既然能够遍历查找,那么为什么不能能够建立,上面T2的问题?

Append-Only Storage

oldest-to-newest:不需要更新索引,但是需要遍历查找最version
newest-to-oldest:需要更新索引,但是不需要遍历查找

Time-Travel Storage

time-travel table

delta storage segment

Garbage Collection

不能够无限的存储历史版本,删除历史版本需要处理的问题:

Tuple-level

Background Vacuuming


优化版本,只对dirty的page做scan

Cooperative Cleaning

index查找时顺便清除历史版本,但是只适合O2N chain

Transaction-level GC

Index Management



secondary index 指向 physical address

secondary index 指向 primary index

secondary index 指向 tuple id的indirect layer

MVCC index


mvcc需要存储duplicate key?

由于mvcc必须存储duplicate key,那么对于unique constraint需要额外的处理

MVCC DELETES

标签:Control,index,Multi,19,Storage,查找,版本,secondary
来源: https://www.cnblogs.com/mlmz/p/15988943.html