Keyun Cheng

RAIDP: replication with intra-disk parity

Download

EuroSys, 2020

Summary

Note: I can’t find the pdf of paper public online. I refer to the slides from Eurosys’20 and the slides from Jingwei’s github

This work summaries how to quickly recover from two simutaneous disk failures, e.g. 3-replica without restoring to the third replica for warm data. It introduces RAID-P, with intra-disk parity. It saves 33% storage spaces compared with 3-replica but with better performance while writing, also saves network bandwidth for writes. The performance of read is not really affected.

Details

Strength

  1. Similar fault tolerance with 3-way replica

  2. up to 33% write performance improvement when writing new data compared with HDFS.

  3. 33% less storage, since it’s indeed 2-way replica for each superchunk.

  4. Recovery is efficient thant EC.

  5. Memory simulated Lstor.

Weakness

I need to look into the detail of the thesis to find it’s weakness.