Kaushik Sathupadi

Programmer. Creator. Co-Founder. Dad.

A plain english introduction to CAP Theorem

You’ll often hear about the CAP theorem which specifies some kind of an upper limit when designing distributed systems. As with most of my other introduction tutorials, lets try understanding CAP by comparing it with a real world situation.

Chapter 1: “Remembrance Inc” Your new venture :

Last night when your spouse appreciated you on remembering her birthday and bringing her a gift, a strange Idea strikes you. People are so bad in remembering things. And you’re sooo good at it. So why not start a venture that will put your talent to use? The more you think about it, the more you like it. In fact you even come up with a news paper ad which explains your idea

Remembrance Inc! - Never forget,  even without remembering!
Ever felt bad that you forget so much? Don't worry. Help is just a phone away!
When you need to remember something, just call 555--55-REMEM and tell us what you need to remember. For eg., call us and let us know of your boss's phone number, and forget to remember it. when you need to know it back.. call back the same number[(555)--55-REMEM ] and we'll tell you what's your boss's phone number.
Charges : only $0.1 per request

So, your typical phone conversation will look like this:

  • Customer : Hey, Can you store my neighbor’s birthday?
  • You: Sure.. when is it?
  • Customer : 2nd of jan
  • You: (write it down against the customer’s page in your paper note book )Stored. Call us any time for knowing your neighbor’s birthday again!
  • Customer : Thank you!
  • You: No problem! We charged your credit card with $0.1

Chapter 2 : You scale up:

Your venture gets funded by YCombinator. Your Idea is so simple,
needs nothing but a paper notebook and phone, yet so effective that it
spreads like wild fire. You start getting hundreds of call every day.

And there starts the problem. You see that more and more of your
customers have to wait in the queue to speak to you. Most of them even
hang up tired of the waiting tone. Besides when you were sick the other
day and could not come to work you lost a whole day of business. Not to
mention all those dissatisfied customers who wanted information on that
day.
You decide it’s time for you to scale up and bring in your wife to help you.

Your start with a simple plan:

  1. You and your wife both get an extension phone
  2. Customers still dial (555)–55-REMEM and need to remember only one number
  3. A pbx will route the a customers call to whoever is free and equally

Chapter 3 : You have your first “Bad Service” :

Two days after you implemented the new system, you get a call from
you get a call from your trusted customer Jhon. This is how it goes:

  • Jhon: Hey
  • You: Glad you called “Remembrance Inc!”. What can I do for you?
  • Jhon: Can you tell me when is my flight to New Delhi?
  • You: Sure.. 1 sec sir
    (You look up your notebook)
    (wow! there is no entry for “flight date” in Jhon’s page)!!!!!
  • You: Sir, I think there is a mistake. You never told us about your flight to delhi
  • Jhon: What! I just called you guys yesterday!(cuts the call!)

How did that happen? Could Jhon be lying? You think about it for a
second and the reason hits you! Could Jhon’s call yesterday reached your
wife? You go to your wife’s desk and check her notebook. Sure enough
it’s there. You tell this to your wife and she realizes the problem too.

What a terrible flaw in your distributed design! Your
distributed system is not consistent! There could always be a chance
that a customer updates something which goes to either you or your wife
and when the next call from the customer is routed to another person
there will not be a consistent reply from Remembrance Inc!

Chapter 4: You fix the Consistency problem:

Well, your competitors may ignore a bad service, but not you. You
think all night in the bed when your wife is sleeping and come up with a
beautiful plan in the morning. You wake up your wife and tell her:

” Darling this is what we are going to do from now”

  • Whenever any one of us get a call for an update(when the customer
    wants us to remember something) before completing the call we tell the
    other person
  • This way both of us note down any updates
  • When there is call for search(When the customer wants information
    he has already stored) we don’t need to talk with the other person.
    Since both of us have the latest updated information in both of our note
    books we can just refer to it..

There is only one problem though, you say, and that is an “update”
request has to involve both of us and we cannot work in parallel during
that time. For eg. when you get an update request and telling me to
update too, i cannot take other calls. But that’s okay because most
calls we get anyway are “search” (a customer updates once and asks many
times) . Besides, we cannot give wrong information at any cost.

“Neat” your wife says, “but there is one more flaw in this system
that you haven’t thought of. What if one of us doesn’t report to work on
a particular day? On that day, then, we won’t be able to take “any”
Update calls, because the other person cannot be updated! We will have Availability
problem , i.e, for eg., if an update request comes to me I will never
be able to complete that call because even though I have written the
update in my note book, I can never update you. So I can never complete
the call!”

Chapter 5: You come up with the greatest solution Ever:

You being to realize a little bit on why distributed system might not
be as easy as you thought at first. Is it that difficult to come up
with a solution that could be both “Consistent and Available”?
Could be difficult for others, but not for you!! Then next morning you
come up with a solution that your competitors cannot think of in their
dreams! You wake your wife up eagerly again..

” look” , you tell her.. “This is what we can do to be consistent and
available” . The plan is mostly similar to what I told you yesterday:

  • i) Whenever any one of us get a call for an update(when the
    customer wants us to remember something) before completing the call, if
    the other person is available we tell the other person. This way both of
    us note down any updates
  • ii) But if the other person is not available(doesn’t report to work) we send the other person an email about the update.
  • iii) The next day when the other person comes to work after taking a
    day off, He first goes through all the emails, updates his note book
    accordingly.. before taking his first call.

Genius! You wife says! I can’t find any flaws in this systems. Let’s put it to use.. Remembrance Inc! is now both Consistent and available!

Chapter 6: Your wife gets angry :

Everything goes well for a while. Your system is consistent. Your
system works well even when one of you doesn’t report to work. But what
if Both of you report to work and one of you doesn’t update the other
person? Remember all those days you’ve been waking your wife up early
with your Greatest-idea-ever-bullshit? * What if your wife decides to
take calls but is too angry with you and decides not to update you for a
day? Your idea totally breaks! Your idea so far is good for consistency
and availability but is not Partition Tolerant!*
You can decide to be partition tolerant by deciding not to take any
calls until you patch up with your wife.. Then your system will not be
“available” during that time…

Chapter 7: Conclusion :

So Let’s look at CAP Theorem now. Its
states that, when you are designing a distributed system you can get
cannot achieve all three of Consistency, Availability and Partition
tolerance. You can pick only two of:

  • Consistency: You customers, once they have updated information with
    you, will always get the most updated information when they call
    subsequently. No matter how quickly they call back
  • Availability: Remembrance Inc will always be available for calls until any one of you(you or your wife) report to work.
  • Partition Tolerance: Remembrance Inc will work even if there is a communication loss between you and your wife!

Bonus : Eventual Consistency with a run around clerk :

Here is another food for thought. You can have a run around clerk,
who will update other’s notebook when one of your’s or your wife’s note
books is updated. The greatest benefit of this is that, he can work in
background and one of your or your wife’s “update” doesn’t have to
block, waiting for the other one to update. This is how many NoSql
systems work, one node updates itself locally and a background process
synchronizes all other nodes accordingly… The only problem is that you
will lose consistency of some time. For eg., a customer’s call reaches
your wife first and before the clerk has a chance to update your
notebook , the customer’ calls back and it reaches you. Then he won’t
get a consistent reply.. But that said, this is not at all a bad idea if
such cases are limited. For eg., assuming a customer won’t forget
things so quickly that he calls back in 5 minutes.

That’s CAP and eventual consistency for you in simple english :)

Post by Kaushik Sathupadi, Founder Cull.io - A platform to recruit web developers by having them develop a web application
 
Copyright © Kaushik Sathupadi 2009 - 2012

[转]A plain english introduction to cap theorem的更多相关文章

  1. 【翻译】Brewer's CAP Theorem CAP定理

    Brewer's CAP Theorem 原文地址:http://www.julianbrowne.com/article/brewers-cap-theorem Brewer’s (CAP) The ...

  2. An Illustrated Proof of the CAP Theorem

    An Illustrated Proof of the CAP Theorem The CAP Theorem is a fundamental theorem in distributed syst ...

  3. A Plain English Guide to JavaScript Prototypes

    When I first started learning about JavaScript object model my reaction was of horror and disbelief. ...

  4. CAP theorem

    https://en.wikipedia.org/wiki/CAP_theorem

  5. 「2014-2-23」Note on Preliminary Introduction to Distributed System

    今天读了几篇分布式相关的内容,记录一下.非经典论文,非系统化阅读,非严谨思考和总结.主要的着眼点在于分布式存储:好处是,跨越单台物理机器的计算和存储能力的限制,防止单点故障(single point ...

  6. Note on Preliminary Introduction to Distributed System

    今天读了几篇分布式相关的内容,记录一下.非经典论文,非系统化阅读,非严谨思考和总结.主要的着眼点在于分布式存储:好处是,跨越单台物理机器的计算和存储能力的限制,防止单点故障(single point ...

  7. 分布式系统(Distributed System)资料

    这个资料关于分布式系统资料,作者写的太好了.拿过来以备用 网址:https://github.com/ty4z2008/Qix/blob/master/ds.md 希望转载的朋友,你可以不用联系我.但 ...

  8. 想从事分布式系统,计算,hadoop等方面,需要哪些基础,推荐哪些书籍?--转自知乎

    作者:廖君链接:https://www.zhihu.com/question/19868791/answer/88873783来源:知乎 分布式系统(Distributed System)资料 < ...

  9. 从事分布式系统,计算,hadoop

    作者:廖君链接:https://www.zhihu.com/question/19868791/answer/88873783来源:知乎 分布式系统(Distributed System)资料 < ...

随机推荐

  1. DOM系列---基础篇[转]

    DOM (Document Object Model) 即文档对象模型, 针对 HTML 和 XML 文档的 API (应用程序接口) .DOM 描绘了一个层次化的节点树,运行开发人员添加.移除和修改 ...

  2. linux 一些命令

    1.查看cpu个数 cat /proc/cpuinfo |grep "physical id" |sort | uniq |wc -l 2 2.查看cpu逻辑个数 cat /pro ...

  3. git常用语法

    git笔记  1.     获取项目(克隆):     Git repository:                       git clone -b develop ssh://git@68. ...

  4. 利用LM神经网络和决策树去分类

    # -*- coding: utf-8 -*- import pandas as pd from scipy.interpolate import lagrange from matplotlib i ...

  5. uva 10668

    #include <iostream> #include <cstdlib> #include <cstdio> #include <cmath> us ...

  6. Android为ViewPager增加切换动画——使用属性动画.

    ViewPager作为Android最常用的的组件之一,相信大家在项目中会频繁的使用到的,例如利用ViewPager制作引导页.轮播图,甚至做整个app的表现层的框架等等. Android3.0以下不 ...

  7. bzoj 2245: [SDOI2011]工作安排

    #include<cstdio> #include<iostream> #include<cstring> #define M 10000 #define inf ...

  8. 启动项目报错Error: listen EADDRINUSE

    我在使用elasticsearch的kibana插件时候,有一次启动,遇到这个错误: Error: listen EADDRINUSE 它的意思是,端口5601被其他进程占用. 故而,需要kill掉那 ...

  9. IBatis.Net 表连接查询(五)

    IBatis.Net之多表查询: 一.定制实际对应类的方式 首先配置多表的测试数据库,IBatis.Net之Oracle表连接查询配置: 首先新建两张表如下: 为两张表建立外键: ALTER TABL ...

  10. wp8.1 Study9:针对不同的屏幕和手机方向调整UI

    一.预备知识 现在不同屏幕大小WP8.1手机越来越多,那么在设计UI时,这需要我们考虑这个问题.在WP中,比例因子(a scale factor)能很好的解决问题,而且在微软系统的PC/平板/手机都是 ...