- Cassandra 3.x High Availability(Second Edition)
- Robbie Strickland
- 201字
- 2021-07-14 10:24:21
Introducing the ACID properties
One of the most significant obstacles that prevents traditional databases from achieving high availability is that they attempt to strongly guarantee the ACID properties:
- Atomicity: This guarantees that database updates associated with a transaction occur in an all-or-nothing manner. If some part of the transaction fails, the state of the database remains unchanged.
- Consistency: This assures that the integrity of data will be preserved across all instances of that data. Changes to a value in one location will definitely be reflected in all other locations.
- Isolation: This attempts to ensure that concurrent transactions that manipulate the same data do so in a controlled manner, essentially isolating in-process changes from other clients. Most traditional relational database systems provide various levels of isolation with different guarantees at each level.
- Durability: This ensures that all writes are preserved in nonvolatile storage, most commonly on disk.
Database designers most commonly achieve these properties via write masters, locks, elaborate storage area networks, and the like – all of which tend to sacrifice availability. As a result, achieving some semblance of high availability frequently involves bolt-on components, log shipping, leader election, sharding, and other such strategies that attempt to preserve the original design.
推薦閱讀
- Windows Server 2019 Cookbook
- Designing Purpose:Built Drones for Ardupilot Pixhawk 2.1
- Containerization with LXC
- Linux內核完全注釋(20周年版·第2版)
- Windows Phone 7.5 Data Cookbook
- SharePoint 2013 WCM Advanced Cookbook
- Ganglia系統監控
- 嵌入式操作系統(Linux篇)(微課版)
- Mastering Reactive JavaScript
- Linux內核設計的藝術:圖解Linux操作系統架構設計與實現原理
- OpenStack系統架構設計實戰
- iOS 8開發指南
- Windows 7實戰從入門到精通(超值版)
- 鴻蒙操作系統設計原理與架構
- bash shell腳本編程經典實例(第2版)