分布式系统中的一致性--从棒球比赛说起

2018-12-09  本文已影响8人  MontyOak

原文链接

这篇论文主要描述了6种不同的读操作一致性保证,并用棒球比赛中不同人群的角度来说明不同一致性适用的例子。
这里的一致性讨论的是数据在不同副本之间由于同步策略的关系,对于客户端的数据可见性。


六种数据一致性

下图是这六种一致性保证的简单总结:


六种一致性保证的比较

下面是以棒球比赛为例,假设双方比赛结果存储在一个分布式KV存储中,一个key为“visitor”存储客队分数,一个key为“home”存储主队分数:

Write (“visitors”, 0);
Write (“home”, 0);
  for inning = 1 .. 9
    outs = 0;
  while outs < 3
    visiting player bats;
    for each run scored
      score = Read (“visitors”);
      Write (“visitors”, score + 1);
  outs = 0;
  while outs < 3
    home player bats;
    for each run scored
      score = Read (“home”);
      Write (“home”, score + 1);
end game;

假设一场实际比赛产生如下写入操作:

Write (“home”, 1)
Write (“visitors”, 1)
Write (“home”, 2)
Write (“home”, 3)
Write (“visitors”, 2)
Write (“home”, 4)
Write (“home”, 5)

对于上面六种不同的一致性保证,可能读到分数结果如下:


可能读到不同的比分

下面就从不同角色角度来看,他们分别需要采用哪种一致性保证:

# when visitor get one score
score = Read("visitors");
Write("visitors", score + 1);
# when home get one score
score = Read("home")
Write("home", score + 1)

那么,记分员需要哪种程度的一致性保证呢?显而易见的,他需要获取最新的实时数据,以便数据更新操作不会出错,由于在这里记分员是唯一的数据写入者,所以对于他的读操作,读本身写的保证能够满足需求。

if first half of 9th inning complete then
  vScore = Read (“visitors”);
  hScore = Read (“home”);
  if vScore < hScore
    end game;

在九局五胜的赛制中,在第五局及其之后的比赛中,裁判都需要获取实时数据,以便判断是否提前结束比赛,由于裁判本身不写入数据,只读取数据,所以裁判需要强一致性保证

do {
  vScore = Read (“visitors”);
  hScore = Read (“home”);
  report vScore and hScore;
  sleep (30 minutes);
} while during baseball game

这里并不要求强一致性保证。如果采用最总一致性保证会出现什么问题呢?它可能会读取到不存在的比分(两个分数一个更新了,一个没更新)。这里采用一致性前缀+单调读来保证读取逐步更新的比分

While not end of game {
  drink beer;
  smoke cigar;
}
go out to dinner;
vScore = Read (“visitors”);
hScore = Read (“home”);
write article;

这里对于比分没有实时要求,最弱的最终一致性保证就能满足需求,但是为了保险起见,可以采用有界延迟的保证,确保在写作时能够拿到准确的最终比分

Wait for end of game;
score = Read (“home”);
stat = Read (“season-runs”);
Write (“season-runs”, stat + score);

对于统计数据的读取,为了防止读取旧数据覆盖新数据,可以采用读自己写的一致性保证

do {
stat = Read (“season-runs”);
discuss stats with friends;
sleep (1 day);
}

这里对于实时性没有什么要求,只需要最弱的最终一致性保证就能满足需求

不同角色对于一致性的不同要求
上一篇 下一篇

猜你喜欢

热点阅读