Bootstrap

分布式系统CAP理论和BASE理论

目录

CAP理论

BASE理论


CAP理论

CAP是指在分布式系统中Consistency(一致性)、Availability(可用性)、Partition Tolerance(分区容错性),三者不能同时成立。在1998年由加州大学的计算机科学家Eric Brewer提出。

Consistency : Every read receives the most recent write or an error
Availability : Every request receives a (non-error) response – without the guarantee that it contains the most recent write
Partition tolerance : The system continues to operate despite an arbitrary number of messages being dropped (or delayed) by the network between nodes

一致性:客户端的每次读操作,要么读到最新的数据,要么读失败,强调的是数据的准确性。

可用性:系统必须始终保持响应,即使部分节点故障,也能继续提供服务,即使数据可能不一致。

分区容错性:系统在面对网络分区(即节点之间的通信中断)时仍然能够正常工作。因网络问题导致数据丢失或响应延迟,系

;