Why are RDBMS considered Available (CA) for CAP Theorem

前端 未结 3 1854
逝去的感伤
逝去的感伤 2021-01-01 20:18

If I understand the CAP Theorem correctly, availability means that the cluster continues to operate even if a node goes down.

I\'ve seen a lot of people (http://blo

3条回答
  •  执念已碎
    2021-01-01 20:54

    In CAP Theorem P is for Partition tolerance , which is the ability of system to handle partitions(partitions are isolated clusters - due to network failure or any other reason ..).

    In a distributed network to handle a partition , system has to pick either Consistency or Availability.

    In case of RDBMS there is no chance for partitions (assuming not distributed which is normal case) ,So Those will be always CA.

提交回复
热议问题