Jump to: navigation, search

Difference between revisions of "Swift/erasure-codes/"

 
Line 10: Line 10:
 
* What is the data flow for writes? [[Swift/erasure-codes/writes]]
 
* What is the data flow for writes? [[Swift/erasure-codes/writes]]
 
* What is the granularity of EC data? (ie cluster, account, container, object) [[Swift/erasure-codes/granularity]]
 
* What is the granularity of EC data? (ie cluster, account, container, object) [[Swift/erasure-codes/granularity]]
 +
* How does this work across regions? [[Swift/erasure-codes/regions]]

Latest revision as of 00:24, 1 July 2013

Today Swift uses replication for data durability and overall performance. However, in some use cases, the low-latency and high availability of replica storage is not as important as reducing the overall storage footprint. These use cases are normally characterized by having at least one of the following properties: 1) Large aggregate size 2) Large individual object sizes 3) Infrequent access. One example of this use case is a cluster that is used as storage capacity for backups.

To implement erasure codes into Swift, we need to answer the following questions: