From c7ce8a05a515d203582e5313b95509685c68492c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9C=B1=E6=99=BA=E6=85=A7?= Date: Wed, 19 Sep 2018 15:54:20 +0800 Subject: [PATCH] =?UTF-8?q?[BUG=5FFIX]=20=E4=BF=AE=E6=94=B9=E5=90=8D?= =?UTF-8?q?=E7=A7=B0=E9=94=99=E8=AF=AF=EF=BC=8C=E4=BA=8B=E5=8A=A1=E7=89=B9?= =?UTF-8?q?=E6=80=A7=E4=B8=BA=20ACID?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- notes/分布式.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/notes/分布式.md b/notes/分布式.md index a39ae35e..d2b2f974 100644 --- a/notes/分布式.md +++ b/notes/分布式.md @@ -99,7 +99,7 @@ Zookeeper 提供了一种树形结构级的命名空间,/app1/p_1 节点的父 # 二、分布式事务 -指事务的操作位于不同的节点上,需要保证事务的 AICD 特性。 +指事务的操作位于不同的节点上,需要保证事务的 ACID 特性。 例如在下单场景下,库存和订单如果不在同一个节点上,就涉及分布式事务。 @@ -335,4 +335,5 @@ Raft 也是分布式一致性协议,主要是用来竞选主节点。 - [What is CAP theorem in distributed database system?](http://www.colooshiki.com/index.php/2017/04/20/what-is-cap-theorem-in-distributed-database-system/) - [NEAT ALGORITHMS - PAXOS](http://harry.me/blog/2014/12/27/neat-algorithms-paxos/) - [Paxos By Example](https://angus.nyc/2012/paxos-by-example/) +- [ACID](https://en.wikipedia.org/wiki/ACID_(computer_science))