`

NOSQL DB concurrency

阅读更多
Optimistic Concurrency, also known as MVCC (Multi-Version
Concurrency Control).


This mechanism relies on timestamps (presupposing a shared
clock) or Vector Clocks, as described in [Lamport, 1978], to determine the modification
dates of transactions. In a nutshell, when transaction A begins, it reads the timestamps of
the entity or entities it wishes to modify. It then does its computations, and prepares its
write. Just before writing, it checks the timestamp of the values again and looks to see if a
conflicting transaction (transaction B) has updated the values. If so, the write would be in
conflict, and its changes are rolled back and forced to start again from scratch.


Optimistic Concurrency has several properties that make it an ideal choice for
large scale distributed database implementations. In opposition to locking mechanisms,
reads are never blocked, which can be important if the access pattern of the application
calls for large amounts of reads (as many queries in the map/reduce paradigm do).
MVCC is very good at achieving true "snapshot" isolation, because a query can carry
with it a timestamp that is used to filter any entity the query touches; this is true not only
in short terms "near" queries, but also equally effective in reconstructing historical
snapshots.
分享到:
评论

相关推荐

    OrientDB-Manual.pdf

    OrientDB是一款高性能的NoSQL数据库管理系统,支持多模型数据存储和查询。它提供了面向文档(Document API)和面向图形(Graph API)的两种数据操作方式,能够有效地处理关系图和文档数据。OrientDB的设计目标是结合...

    mongo-concurrency-demo:证明MongoDB的更新操作是文档级原子的

    MongoDB是一种流行且功能强大的NoSQL数据库,以其灵活性、高性能和易于使用而受到广大开发者的喜爱。在本文中,我们将深入探讨MongoDB的并发控制机制,特别是其文档级原子性特性,通过一个JavaScript示例来证明这...

    DataBase Presentation

    此外,文件内容还提到了数据库的关键指标,如性能(Performance)、备份和恢复(Backup and Restore)、事务和并发(Transactions and Concurrency)、复制(Replication)、索引可用性(Index Availability)、可...

    开源项目-dgraph-io-badger.zip

    3. **多版本并发控制(MVCC, Multi-Version Concurrency Control)**:Badger支持并发读写操作,通过MVCC保证事务的一致性和隔离性,使得多个读写操作可以并行执行,提高系统性能。 4. **压缩和数据碎片管理**:...

Global site tag (gtag.js) - Google Analytics