This page builds on contents from the SOSP 2011 paper. In particular, readers should be comfortable with sections 3.5.1 Finding Log Segment Replicas and 3.5.2 Detecting Incomplete Logs.

The SOSP 2011 paper does not mention how to detect incomplete logs during recovery in the face of backup failures. Here's an example of a situation in which RAMCloud would behave incorrectly:

  1. Suppose master M is writing object 100 to segment X on backups B1, B2, and B3 when backup B1 crashes.
  2. Master M re-replicates X to B4 and moves on, filling in more of X with objects 101, 102, etc.
  3. Then, a massive failure occurs, taking all servers offline.
  4. Backup B1 comes back online.
  5. The recovery/cold start for M only finds B1's replica of X, which looks like the head of the log.
  6. Recovery completes, with objects 101, 102, etc nowhere to be found.

The only correct behavior is to wait for B2, B3, or B4 to come back online with an up-to-date replica of segment X.

We think that to solve this problem, it is necessary to either:

We already plan to have a reliable external storage system that internally uses consensus for some critical data that the coordinator stores. So the best solution is one that balances the following goals:

Some of these goals are at odds with each other. For example, Ryan has a cute way to store only one integer per log externally: store the checksum of the entire log. Unfortunately, this requires frequent updating.

Here's the best solution we know of so far (2012-01-18):

 

Suppose master M is writing object 100 to segment X on backups B1, B2, and B3 when backup B1 crashes. Then:

 

  1. Master M detects that B1 has crashed and confirms with the coordinator that B1 is unavailable. (It still makes sure object 100 has reached B2 and B3.)
  2. M opens segment Y on a new set of backups, with Y's log digest including segment X.
  3. M closes segment X on B2 and B3.
  4. M re-replicates X to a new backup, B4.
  5. M asks the coordinator to update its minimum acceptable open segment ID to Y. This is stored reliably in external storage.
  6. M acknowledges the client's write for object 100 and continues accepting writes.
During master recovery, the coordinator will only use open segments that have a segment ID greater than or equal to the minimum acceptable open segment ID for the master.
 
Notes on ordering:

If master recovery were to occur before step 5 is complete, these are the interesting ways the log may be recovered as. Some include object 100 and some don't, but they are all correct (since the write to object 100 hasn't been acknowledged to the client). For notation, a segment ending in a square bracket is closed, and a segment ending in a parenthesis is open.

[Segment A] ... [Segment W] [Segment X without object 100)
[Segment A] ... [Segment W] [Segment X without object 100) [Segment Y with no data)
[Segment A] ... [Segment W] [Segment X with object 100)
[Segment A] ... [Segment W] [Segment X with object 100) [Segment Y with no data)
[Segment A] ... [Segment W] [Segment X with object 100] [Segment Y with no data)


After step 5, there is only one way the log will be recovered (which will include object 100).

 

[Segment A] ... [Segment W] [Segment X with object 100] [Segment Y)