SlideShare a Scribd company logo
Distributed Computing Seminar Lecture 3: Distributed Filesystems Christophe Bisciglia, Aaron Kimball, & Sierra Michels-Slettvet Google, Inc.  Summer 2007 Except as otherwise noted, the content of this presentation is © Copyright University of Washington and licensed under the Creative Commons Attribution 2.5 License.
Outline Filesystems Overview NFS (Network File System)  GFS (Google File System)
Filesystems Overview System that permanently stores data Usually layered on top of a lower-level physical storage medium Divided into logical units called “files” Addressable by a  filename  (“foo.txt”) Usually supports hierarchical nesting (directories) A file  path  joins file & directory names into a  relative  or  absolute  address to identify a file (“/home/aaron/foo.txt”)
Distributed Filesystems Support access to files on remote servers Must support concurrency Make varying guarantees about locking, who “wins” with concurrent writes, etc... Must gracefully handle dropped connections Can offer support for replication and local caching Different implementations sit in different places on complexity/feature scale
NFS  First developed in 1980s by Sun Presented with standard UNIX FS interface Network drives are  mounted  into local directory hierarchy
NFS Protocol Initially completely stateless Operated over UDP; did not use TCP streams File locking, etc., implemented in higher-level protocols Modern implementations use TCP/IP & stateful protocols
Server-side Implementation NFS defines a  virtual file system Does not actually manage local disk layout on server Server instantiates NFS volume on top of local file system Local hard drives managed by concrete file systems (EXT, ReiserFS, ...) Other networked FS's mounted in by...?
NFS Locking NFS v4 supports stateful locking of files Clients inform server of intent to lock Server can notify clients of outstanding lock requests Locking is lease-based: clients must continually renew locks before a timeout Loss of contact with server abandons locks
NFS Client Caching NFS Clients are allowed to cache copies of remote files for subsequent accesses Supports  close-to-open  cache consistency When client A closes a file, its contents are synchronized with the master, and timestamp is changed When client B opens the file, it checks that local timestamp agrees with server timestamp. If not, it discards local copy. Concurrent reader/writers must use flags to disable caching
NFS: Tradeoffs NFS Volume managed by single server Higher load on central server Simplifies coherency protocols Full POSIX system means it “drops in” very easily, but isn’t “great” for any specific need
The Google File System Sanjay Ghemawat, Howard Gobioff,  and Shun-Tak Leung SOSP 2003 (These slides by Alex Moshchuk, University of Washington – used with permission)
Motivation Google needed a good distributed file system Redundant storage of massive amounts of data on cheap and unreliable computers Why not use an existing file system? Google’s problems are different from anyone else’s Different workload and design priorities GFS is designed for Google apps and workloads Google apps are designed for GFS
Assumptions High component failure rates Inexpensive commodity components fail all the time “ Modest” number of HUGE files Just a few million Each is 100MB or larger; multi-GB files typical Files are write-once, mostly appended to Perhaps concurrently Large streaming reads High sustained throughput favored over low latency
GFS Design Decisions Files stored as chunks Fixed size (64MB) Reliability through replication Each chunk replicated across 3+  chunkservers Single master to coordinate access, keep metadata Simple centralized management No data caching Little benefit due to large data sets, streaming reads Familiar interface, but customize the API Simplify the problem; focus on Google apps Add  snapshot  and  record append  operations
GFS Architecture Single master Mutiple chunkservers … Can anyone see a potential weakness in this design?
Single master From distributed systems we know this is a: Single point of failure Scalability bottleneck GFS solutions: Shadow masters Minimize master involvement never move data through it, use only for metadata and cache metadata at clients large chunk size master delegates authority to primary replicas in data mutations (chunk leases) Simple, and good enough!
Metadata (1/2) Global metadata is stored on the master File and chunk namespaces Mapping from files to chunks Locations of each chunk’s replicas All in memory (64 bytes / chunk) Fast Easily accessible
Metadata (2/2) Master has an  operation log  for persistent logging of critical metadata updates persistent on local disk replicated checkpoints for faster recovery
Mutations Mutation = write or append must be done for all replicas Goal: minimize master involvement Lease mechanism: master picks one replica as primary; gives it a “lease”  for mutations primary defines a serial  order of mutations all replicas follow this order Data flow decoupled from control flow
Atomic record append Client specifies data GFS appends it to the file atomically at least once GFS picks the offset works for concurrent writers Used heavily by Google apps e.g., for files that serve as multiple-producer/single-consumer queues
Relaxed consistency model (1/2) “ Consistent” = all replicas have the same value “ Defined” = replica reflects the mutation, consistent  Some properties: concurrent writes leave region consistent, but possibly undefined  failed writes leave the region inconsistent Some work has moved into the applications: e.g., self-validating, self-identifying records
Relaxed consistency model (2/2) Simple, efficient Google apps can live with it what about other apps? Namespace updates atomic and serializable
Master’s responsibilities (1/2) Metadata storage Namespace management/locking Periodic communication with chunkservers give instructions, collect state, track cluster health Chunk creation, re-replication, rebalancing balance space utilization and access speed spread replicas across racks to reduce correlated failures re-replicate data if redundancy falls below threshold rebalance data to smooth out storage and request load
Master’s responsibilities (2/2) Garbage Collection simpler, more reliable than traditional file delete master logs the deletion, renames the file to a hidden name lazily garbage collects hidden files Stale replica deletion detect “stale” replicas using chunk version numbers
Fault Tolerance High availability fast recovery master and chunkservers restartable in a few seconds chunk replication default: 3 replicas.  shadow masters Data integrity checksum every 64KB block in each chunk
Performance
Deployment in Google Many GFS clusters hundreds/thousands of storage nodes each Managing petabytes of data GFS is under BigTable, etc.
Conclusion GFS demonstrates how to support large-scale processing workloads on commodity hardware design to tolerate frequent component failures optimize for huge files that are mostly appended and read feel free to relax and extend FS interface as required go for simple solutions (e.g., single master) GFS has met Google’s storage needs… it must be good!
Next Time... Start learning about algorithms for distributed computation Clustering Algorithms

More Related Content

PDF
SeaweedFS introduction
PPTX
Google file system
PDF
Hadoop Distributed File System
PPT
GFS - Google File System
PPT
google file system
PDF
Google File System
PDF
Disperse xlator ramon_datalab
SeaweedFS introduction
Google file system
Hadoop Distributed File System
GFS - Google File System
google file system
Google File System
Disperse xlator ramon_datalab

What's hot (20)

PPTX
Everything You Need To Know About Persistent Storage in Kubernetes
PDF
Docker Intro
PPT
Google file system
PDF
Filesystem Comparison: NFS vs GFS2 vs OCFS2
PPTX
Google file system
PPTX
Google File System
PDF
Glusterfs and openstack
PPT
Anatomy of file write in hadoop
PPTX
GOOGLE FILE SYSTEM
PPTX
Google file system
PPT
advanced Google file System
PPTX
Google File System
PPTX
PPTX
{code} and Containers - Open Source Infrastructure within Dell Technologies
PPT
Unit 3 file management
PPTX
Google file system GFS
ODP
Hadoop HDFS by rohitkapa
PPTX
Google File System
ODP
Red Hat Gluster Storage : GlusterFS
PDF
3 technical-dns-workshop-day2
Everything You Need To Know About Persistent Storage in Kubernetes
Docker Intro
Google file system
Filesystem Comparison: NFS vs GFS2 vs OCFS2
Google file system
Google File System
Glusterfs and openstack
Anatomy of file write in hadoop
GOOGLE FILE SYSTEM
Google file system
advanced Google file System
Google File System
{code} and Containers - Open Source Infrastructure within Dell Technologies
Unit 3 file management
Google file system GFS
Hadoop HDFS by rohitkapa
Google File System
Red Hat Gluster Storage : GlusterFS
3 technical-dns-workshop-day2
Ad

Viewers also liked (15)

PDF
File lock
PDF
Distributed computing the Google way
PPT
Distributed file systems
PPT
Network and distributed systems
PPTX
Ch11 file system implementation
PPT
Dfs (Distributed computing)
PPT
Unit 3
PPT
File models and file accessing models
PDF
GOOGLE: Designs, Lessons and Advice from Building Large Distributed Systems
PDF
Introduction to distributed file systems
PPT
Distributed File Systems
PPT
3. distributed file system requirements
PPT
Chapter 8 distributed file systems
PPT
Chapter 17 - Distributed File Systems
File lock
Distributed computing the Google way
Distributed file systems
Network and distributed systems
Ch11 file system implementation
Dfs (Distributed computing)
Unit 3
File models and file accessing models
GOOGLE: Designs, Lessons and Advice from Building Large Distributed Systems
Introduction to distributed file systems
Distributed File Systems
3. distributed file system requirements
Chapter 8 distributed file systems
Chapter 17 - Distributed File Systems
Ad

Similar to Distributed file systems (from Google) (20)

PPT
Distributed computing seminar lecture 3 - distributed file systems
PPT
Lec3 Dfs
PPT
Gfs介绍
PPT
Advance google file system
PPT
PPT
Gfs google-file-system-13331
PPT
googlefs-vijay.ppt ghix hdlp pdopld og un
PDF
The Google file system
PDF
The Google File System (GFS)
PPTX
GFS xouzfz h ghdzg ix booc ug nog ghzg m
PPT
Lalit
PPTX
GFS presenttn.pptx
PDF
Google File System
PPTX
GFS & HDFS Introduction
PDF
Seminar Report on Google File System
PDF
Google File System: System and Design Overview
PDF
PPTX
storage-systems.pptx
PPTX
Cluster based storage - Nasd and Google file system - advanced operating syst...
PPT
Google File System
Distributed computing seminar lecture 3 - distributed file systems
Lec3 Dfs
Gfs介绍
Advance google file system
Gfs google-file-system-13331
googlefs-vijay.ppt ghix hdlp pdopld og un
The Google file system
The Google File System (GFS)
GFS xouzfz h ghdzg ix booc ug nog ghzg m
Lalit
GFS presenttn.pptx
Google File System
GFS & HDFS Introduction
Seminar Report on Google File System
Google File System: System and Design Overview
storage-systems.pptx
Cluster based storage - Nasd and Google file system - advanced operating syst...
Google File System

More from Sri Prasanna (20)

PDF
Qr codes para tech radar
PDF
Qr codes para tech radar 2
DOC
DOC
PDF
PDF
PDF
PDF
PDF
About stacks
PDF
About Stacks
PDF
About Stacks
PDF
About Stacks
PDF
About Stacks
PDF
About Stacks
PDF
About Stacks
PDF
About Stacks
PPT
Introduction & Parellelization on large scale clusters
PPT
Mapreduce: Theory and implementation
PPT
Other distributed systems
PPT
Introduction to Cluster Computing and Map Reduce (from Google)
Qr codes para tech radar
Qr codes para tech radar 2
About stacks
About Stacks
About Stacks
About Stacks
About Stacks
About Stacks
About Stacks
About Stacks
Introduction & Parellelization on large scale clusters
Mapreduce: Theory and implementation
Other distributed systems
Introduction to Cluster Computing and Map Reduce (from Google)

Recently uploaded (20)

PDF
Optimiser vos workloads AI/ML sur Amazon EC2 et AWS Graviton
PPTX
Programs and apps: productivity, graphics, security and other tools
PPT
Teaching material agriculture food technology
PDF
Encapsulation_ Review paper, used for researhc scholars
PDF
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
PDF
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
PDF
Approach and Philosophy of On baking technology
PPT
“AI and Expert System Decision Support & Business Intelligence Systems”
PDF
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
PPTX
MYSQL Presentation for SQL database connectivity
PDF
Encapsulation theory and applications.pdf
PPTX
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
PDF
Machine learning based COVID-19 study performance prediction
PPTX
sap open course for s4hana steps from ECC to s4
PDF
Dropbox Q2 2025 Financial Results & Investor Presentation
PDF
NewMind AI Weekly Chronicles - August'25 Week I
PDF
Advanced methodologies resolving dimensionality complications for autism neur...
PDF
Unlocking AI with Model Context Protocol (MCP)
PDF
Diabetes mellitus diagnosis method based random forest with bat algorithm
Optimiser vos workloads AI/ML sur Amazon EC2 et AWS Graviton
Programs and apps: productivity, graphics, security and other tools
Teaching material agriculture food technology
Encapsulation_ Review paper, used for researhc scholars
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
Reach Out and Touch Someone: Haptics and Empathic Computing
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
Approach and Philosophy of On baking technology
“AI and Expert System Decision Support & Business Intelligence Systems”
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
MYSQL Presentation for SQL database connectivity
Encapsulation theory and applications.pdf
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
Machine learning based COVID-19 study performance prediction
sap open course for s4hana steps from ECC to s4
Dropbox Q2 2025 Financial Results & Investor Presentation
NewMind AI Weekly Chronicles - August'25 Week I
Advanced methodologies resolving dimensionality complications for autism neur...
Unlocking AI with Model Context Protocol (MCP)
Diabetes mellitus diagnosis method based random forest with bat algorithm

Distributed file systems (from Google)

  • 1. Distributed Computing Seminar Lecture 3: Distributed Filesystems Christophe Bisciglia, Aaron Kimball, & Sierra Michels-Slettvet Google, Inc. Summer 2007 Except as otherwise noted, the content of this presentation is © Copyright University of Washington and licensed under the Creative Commons Attribution 2.5 License.
  • 2. Outline Filesystems Overview NFS (Network File System) GFS (Google File System)
  • 3. Filesystems Overview System that permanently stores data Usually layered on top of a lower-level physical storage medium Divided into logical units called “files” Addressable by a filename (“foo.txt”) Usually supports hierarchical nesting (directories) A file path joins file & directory names into a relative or absolute address to identify a file (“/home/aaron/foo.txt”)
  • 4. Distributed Filesystems Support access to files on remote servers Must support concurrency Make varying guarantees about locking, who “wins” with concurrent writes, etc... Must gracefully handle dropped connections Can offer support for replication and local caching Different implementations sit in different places on complexity/feature scale
  • 5. NFS First developed in 1980s by Sun Presented with standard UNIX FS interface Network drives are mounted into local directory hierarchy
  • 6. NFS Protocol Initially completely stateless Operated over UDP; did not use TCP streams File locking, etc., implemented in higher-level protocols Modern implementations use TCP/IP & stateful protocols
  • 7. Server-side Implementation NFS defines a virtual file system Does not actually manage local disk layout on server Server instantiates NFS volume on top of local file system Local hard drives managed by concrete file systems (EXT, ReiserFS, ...) Other networked FS's mounted in by...?
  • 8. NFS Locking NFS v4 supports stateful locking of files Clients inform server of intent to lock Server can notify clients of outstanding lock requests Locking is lease-based: clients must continually renew locks before a timeout Loss of contact with server abandons locks
  • 9. NFS Client Caching NFS Clients are allowed to cache copies of remote files for subsequent accesses Supports close-to-open cache consistency When client A closes a file, its contents are synchronized with the master, and timestamp is changed When client B opens the file, it checks that local timestamp agrees with server timestamp. If not, it discards local copy. Concurrent reader/writers must use flags to disable caching
  • 10. NFS: Tradeoffs NFS Volume managed by single server Higher load on central server Simplifies coherency protocols Full POSIX system means it “drops in” very easily, but isn’t “great” for any specific need
  • 11. The Google File System Sanjay Ghemawat, Howard Gobioff, and Shun-Tak Leung SOSP 2003 (These slides by Alex Moshchuk, University of Washington – used with permission)
  • 12. Motivation Google needed a good distributed file system Redundant storage of massive amounts of data on cheap and unreliable computers Why not use an existing file system? Google’s problems are different from anyone else’s Different workload and design priorities GFS is designed for Google apps and workloads Google apps are designed for GFS
  • 13. Assumptions High component failure rates Inexpensive commodity components fail all the time “ Modest” number of HUGE files Just a few million Each is 100MB or larger; multi-GB files typical Files are write-once, mostly appended to Perhaps concurrently Large streaming reads High sustained throughput favored over low latency
  • 14. GFS Design Decisions Files stored as chunks Fixed size (64MB) Reliability through replication Each chunk replicated across 3+ chunkservers Single master to coordinate access, keep metadata Simple centralized management No data caching Little benefit due to large data sets, streaming reads Familiar interface, but customize the API Simplify the problem; focus on Google apps Add snapshot and record append operations
  • 15. GFS Architecture Single master Mutiple chunkservers … Can anyone see a potential weakness in this design?
  • 16. Single master From distributed systems we know this is a: Single point of failure Scalability bottleneck GFS solutions: Shadow masters Minimize master involvement never move data through it, use only for metadata and cache metadata at clients large chunk size master delegates authority to primary replicas in data mutations (chunk leases) Simple, and good enough!
  • 17. Metadata (1/2) Global metadata is stored on the master File and chunk namespaces Mapping from files to chunks Locations of each chunk’s replicas All in memory (64 bytes / chunk) Fast Easily accessible
  • 18. Metadata (2/2) Master has an operation log for persistent logging of critical metadata updates persistent on local disk replicated checkpoints for faster recovery
  • 19. Mutations Mutation = write or append must be done for all replicas Goal: minimize master involvement Lease mechanism: master picks one replica as primary; gives it a “lease” for mutations primary defines a serial order of mutations all replicas follow this order Data flow decoupled from control flow
  • 20. Atomic record append Client specifies data GFS appends it to the file atomically at least once GFS picks the offset works for concurrent writers Used heavily by Google apps e.g., for files that serve as multiple-producer/single-consumer queues
  • 21. Relaxed consistency model (1/2) “ Consistent” = all replicas have the same value “ Defined” = replica reflects the mutation, consistent Some properties: concurrent writes leave region consistent, but possibly undefined failed writes leave the region inconsistent Some work has moved into the applications: e.g., self-validating, self-identifying records
  • 22. Relaxed consistency model (2/2) Simple, efficient Google apps can live with it what about other apps? Namespace updates atomic and serializable
  • 23. Master’s responsibilities (1/2) Metadata storage Namespace management/locking Periodic communication with chunkservers give instructions, collect state, track cluster health Chunk creation, re-replication, rebalancing balance space utilization and access speed spread replicas across racks to reduce correlated failures re-replicate data if redundancy falls below threshold rebalance data to smooth out storage and request load
  • 24. Master’s responsibilities (2/2) Garbage Collection simpler, more reliable than traditional file delete master logs the deletion, renames the file to a hidden name lazily garbage collects hidden files Stale replica deletion detect “stale” replicas using chunk version numbers
  • 25. Fault Tolerance High availability fast recovery master and chunkservers restartable in a few seconds chunk replication default: 3 replicas. shadow masters Data integrity checksum every 64KB block in each chunk
  • 27. Deployment in Google Many GFS clusters hundreds/thousands of storage nodes each Managing petabytes of data GFS is under BigTable, etc.
  • 28. Conclusion GFS demonstrates how to support large-scale processing workloads on commodity hardware design to tolerate frequent component failures optimize for huge files that are mostly appended and read feel free to relax and extend FS interface as required go for simple solutions (e.g., single master) GFS has met Google’s storage needs… it must be good!
  • 29. Next Time... Start learning about algorithms for distributed computation Clustering Algorithms