美文网首页
The Google File System

The Google File System

作者: catHeart | 来源:发表于2017-11-02 21:53 被阅读15次

Google spots different requirements for the file system in their daily applications. They design the Google file system to meet the requirements. Some radically different potins in the design space include

First, component failures are the norm rather than the exception. ... constant monitoring, error detection, fault tolerance, and automatic recovery must be integral to the system.

Second, files are hugh by traditional standards. ... design assumptions and parameters such as I/O operation and block size have to revisited.

Third, most files are mutated by appending new data rather than overwriting existing data. ... appending becomes the focus of performance optimization and atomicity guarantees, while caching data block in the client loses its appeal.

Fourth, co-designing the applications and the file system API benefits the overall system by increasing our flexibility.

The architecture of GFS is shown in Fig.1.


gfs_architecture.png

相关文章

  • The Google File System

    Google spots different requirements for the file system i...

  • Google File System

    背景 GFS是Google为其内部应用设计的分布式存储系统。Google可能是这个星球上最大的数据工厂了。如何高效...

  • Google File System

    论文: http://static.googleusercontent.com/media/research.go...

  • Google File System

    教学视频:深入浅出 Google File System 三剑客: GFS ,BigTable, Mapreduc...

  • Google File System

    实现了1k多台的机器提供数百TB的存储文件服务器 设计原则 组件失效是正常现象。由于程序的bug、人为失误、磁盘、...

  • HDFS

    简述 HDFS(Hadoop Distributed File System),作为Google File Sys...

  • PM面试资料笔记 (6) - 技术篇

    01 Google 云计算 GFS:Google File System,Google 文件系统 MapReduc...

  • 分布式存储领域相关论文

    各大公司系统实现Google [SOSP’03] The Google File System[OSDI’06] ...

  • 重读 Google File System

    前言 本着常读常新的原则,最近又一次阅读了Google三架马车之一的《Google File System》。它里...

  • clickhouse 的前世今生

    背景 Google于2003~2006年相继发表了三篇论文“Google File System”“Google ...

网友评论

      本文标题:The Google File System

      本文链接:https://www.haomeiwen.com/subject/tgwapxtx.html