Keyun Cheng

Hybris: Robust Hybrid Cloud Storage

Download

SoCC, 2014

Summary

This paper introduces Hybris KV Store, which tolerates up to f malicious clouds with f + 1 write replication across clouds, and read involving a single cloud. Previous works requires 3f + 1 clouds to mask f potentially malicious clouds, which is much higher cost than f + 1. Hybris leverages strong metadata consistency to guarantee data consistency.

Details

Previous works

ICStore, SpanStore: limited to tolerating cloud outages instead of malicious behaviours in clouds (data corruption). Actually Hybris’s solution is just trying to compare the size of the value s to prevent DoS attacks.

DepSky, SCFS: requiring 3f + 1 clouds to mask f faulty clouds, which is costly in practice.

metadata management: existing works scatter metadata across public clouds, increasing the difficulty of storage management.

Novelty of the paper

  1. the first robust hybrid multi-cloud storage system - allows tolerating malicious clouds at the price of tolerating only cloud outages.
    • Hybris stores metadata on private premises, which allows control over data and improves system performance in terms of latency and storage costs.
    • Hybris clients are built on top of ZooKeeper coordination services - as ZooKeeper clients
  2. Consistency
    • Hybris treats cloud inconsistencies as cloud failures by relying on strong metadata consistency

System Architecture

system-architecture

Protocols

PUT: using timestamp and expiration to guarantee the PUT operation is durable (all data are written to cloud with f + 1 acks), and finally update metatada on RMDS.

GET: the client selects the first cloud c1 from cloudList

With Erasure Coding: 2f + k clouds

Optimizations

Strength

Weakness