Fast’13 几篇不错的Paper

2013-02-20 01:39

Fast’13 几篇不错的Paper

by jametong

at 2013-02-19 17:39:05

original http://www.udpwork.com/item/9267.html

这里为Jeff Darcy 与 Robin Harris的博客汇集

http://storagemojo.com/2013/02/15/storagemojos-best-papers-of-fast-13/

SD Codes: Erasure Codes Designed for How Storage Systems Really Fail by James S. Plank, U of Tennessee, and Mario Blaum and James L. Hafner of IBM Research. RAID systems are vulnerable to a disk failures and unrecoverable read errors, but RAID 6 is overkill for UREs. The paper investigates lighter-weight erasure codes – disk plus sector, instead of 2 disks – to reclaim capacity for user data.

The StorageMojo take : high update costs make this most attractive for active archives, not primary storage. The capacity savings could extend the economic life of current RAID strategies vs newer erasure codes.

Gecko: Contention-Oblivious Disk Arrays for Cloud Storage by Ji-Yong Shin and Hakim Weatherspoon of Cornell, Mahesh Balakrishnan of Microsoft Research and Tudor Marian of Google. The limited I/O performance of disks makes contention a persistant problem on shared systems. The authors propose a novel log structured disk/SSD configuration and show that it virtually eliminates contention between writes, reads and garbage collection.

The StorageMojo take : SSDs help with contention, but they aren’t affordable for large-scale deployments. Gecko offers a way to leverage SSDs for log-structured block storage that significantly improves performance at a reasonable hardware cost.

Write Policies for Host-side Flash Caches by Leonardo Marmol, Raju Rangaswami and Ming Zhao of Florida International U., Swaminathan Sundararaman and Nisha Talagala of Fusion-io and Ricardo Koller of FIU and VMware. Write-through caching is safe but expensive. NAND’s non-volatile nature enables novel write-back cache strategies that preserve data integrity while improving performance. Thanks to large DRAM caches, read-only flash caches aren’t the performance booster they would have been even 5 years ago.

The StorageMojo take : Using flash only for reads mean ignoring half – or more – of the I/O problem. This needs to be fixed and this paper points the way.

Understanding the Robustness of SSDs under Power Fault by Mai Zheng and Feng Qin of Ohio State and Joseph Tucek and Mark Lillibridge of HP Labs. The authors tested 15 SSDs from 5 vendors by injecting power faults. 13 of the 15 lost data that should have been written and 2 of the 13 suffered massive corruption.

The StorageMojo take : We may be trusting SSDs more than they deserve. This research points out problems with still immature SSD technology.

A Study of Linux File System Evolution by Lanyue Lu, Andrea C. Arpaci-Dusseau, Remzi H. Arpaci-Dusseau and Shan Lu of the University of Wisconsin. The authors analyzed 8 years of Linux file system patches – 5079 of them – and discovered, for instance, that

. . . semantic bugs, which require an understanding of file-system semantics to find or fix, are the dominant bug category (over 50% of all bugs). These types of bugs are vexing, as most of them are hard to detect via generic bug detection tools; more complex model checking or formal specification may be needed.

The StorageMojo take : Anyone building or maintaining a file system should read this paper to get a handle on how and why file systems fail. Tool builders will find some likely projects as well.

http://hekafs.org/index.php/2013/02/fast13/

From my own perspective as a filesystem developer, here are some of my own favorites.

  • A Study of Linux File System Evolution(Lu et al, Best Paper [full length])
    Maybe not as much fun as some of the algorithmic stuff in other papers, but I’m very excited by the idea of making an empirical, quantitative study of how filesystems evolve. I’m sure there will be many followups to this.
  • Unioning of the Buffer Cache and Journaling Layers with Non-volatile Memory(Lee et al, Best Paper [short]).
    Devices that combine memory-like performance and byte addressability with persistence are almost here, and figuring out how to use them most effectively is going to be very important over the next few years. This paper’s observations about how to avoid double buffering between an NVM-based cache and an on-disk journal are worth looking into.
  • Radio+Tuner: A Tunable Distributed Object Store(Perkins et al, poster and WiP)
    It might be about object stores, but the core idea – dynamically selecting algorithms within a storage system based on simulation of expected results for a given workload – could be applied to filesystems as well
  • Gecko: Contention-Oblivious Disk Arrays for Cloud Storage(Shin et al).
    This is my own personal favorite, and why I’m glad I stayed for the very last session. They present a very simple but powerful way to avoid the “segment cleaning” problem of log-structured filesystems by using multiple disks. Then, as if that’s not enough, they use SSDs in a very intelligent way to boost read performance even further without affecting writes.

完整的论文列表请参见:

https://www.usenix.org/conference/fast13/tech-schedule/fast-13-program

我个人觉得值得一读的论文有:

1. A Study of Linux File System Evolution

这是一种分析范式的转换,文件系统演化的主要困境在于一些细小的bug,而不是大的设计问题;我们现实中的项目其实也是,很多不起眼的并发bug,不起眼的小错误会困扰你很久。

2.  关于缓存处理的几篇Paper

Write Policies for Host-side Flash Caches

Warming Up Storage-Level Caches with Bonfire

Unioning of the Buffer Cache and Journaling Layers with Non-volatile Memory

随着Flash的发展,以及目前的Flash的较高价位,缓存算法经历了一次大的发展,近期也有多家缓存软件厂商卖出了好的价钱,而且可以想见,在接下来的1-2年,还会有多家缓存软件公司会崛起。

3.

SD Codes: Erasure Codes Designed for How Storage Systems Really Fail

随着目前数据量的大规模增长,尤其是大规模垃圾数据的增长,如何通过有效的方式来确保数据的Reliability,以及有效的方式来节约数据的空间是热门的话题,进一步了解Erasure Code相关的算法、实现,还有挺有意思的。

4.

HARDFS: Hardening HDFS with Selective and Lightweight Versioning

由于目前的BigData的背景,以及Hadoop被几乎神话的地位,让我有兴致了解下与Hadoop相关情况有关的几乎所有内容,哈哈。

5.

Concurrent Deletion in a Distributed Content-Addressable Storage System with Global Deduplication

File Recipe Compression in Data Deduplication Systems

Improving Restore Speed for Backup Systems that Use Inline Chunk-Based Deduplication

去重算法在大规模备份、大规模分布式部署,以及大规模数据的情况下,可以有效的减少数据存储空间,以及与之对应的机器数、机架空间、电力消耗,是我本人这段时间的主要关注点,过段时间,我将整理一份关键的去重相关的论文列表,以及主要论文的核心内容出来与大家见面。

6.

Extending the Lifetime of Flash-based Storage through Reducing Write Amplification from File Systems

Understanding the Robustness of SSDs under Power Fault

了解Flash的一些特性,以及如何更好的使用Flash。

No related posts.

        <div style="margin-top:8px;padding:6px 0;border-top:1px solid #3cf">
            <div style="text-align:center;margin:16px 0;padding:6px;border:0px dashed #999;font-family:arial;font-size:26px;font-weight:bold">
<a href="http://www.udpwork.com/item/9267.html#review_form" title="不喜欢" style="text-decoration:none">
    <img src="http://www.udpwork.com//images/thumb_down24.gif" alt="">
    <span style="color:#f33">0</span>
</a>
   
<a href="http://www.udpwork.com/item/9267.html#review_form" title="喜欢" style="text-decoration:none">
    <img src="http://www.udpwork.com//images/thumb_up24.gif" alt="">
    <span style="color:#3c3">0</span>
</a>

udpwork.com 聚合 | 评论: 0 | 要! 要! 即刻! Now!