Difference between revisions of "NASD, GoogleFS, Farsite"

From Soma-notes
Jump to navigation Jump to search
Line 25: Line 25:
==Questions for GoogleFS==
==Questions for GoogleFS==
# How does the Google file system implement security?
# How does the Google file system implement security?
- Doesn't
:*Doesn't


# Is using a central server (point of access) a good design decision?
# Is using a central server (point of access) a good design decision?
-It certainly works
:*It certainly works
-Makes administration easier
:*Makes administration easier
-As long as redundant and fast, why bother with the hassle of synchronization?
:*As long as redundant and fast, why bother with the hassle of synchronization?


# Is removing random writes a good idea?
# Is removing random writes a good idea?
-They didn't actually remove it, but it is horribly inneficient
:*They didn't actually remove it, but it is horribly inneficient
-BigTable specifically reduces the instances of random write and implements a way to append the same information
:*BigTable specifically reduces the instances of random write and implements a way to append the same information
:*Implementing this style would have killed their model


# Is the speedup attained by GFS's record-append method worth the sacrifice of Application overhead?
# Is the speedup attained by GFS's record-append method worth the sacrifice of Application overhead?
-Needing to manage duplication yourself
:*Needing to manage duplication yourself
-Guaranteed access to specific offsets, which helps consistency, though wastes space
:*Guaranteed access to specific offsets, which helps consistency, though wastes space
 


==Questions for Farsite==
==Questions for Farsite==
# Byzantine fault tolerance?
# Byzantine fault tolerance?
:*Have several entities, some of which may be compromised in some way.  They might either be corrupted, compromised, or simply down.
:**Assumptions for a Byzantine protocol? Failures are independent, so they are not colluding.
:*Good model for hardware failures
:*Bad model for software failures (infection, etc)
:*Not really the appropriate solution, software is your main likely culprit, not hardware problems. 
# How similar and different compared to OceanStore?
# How similar and different compared to OceanStore?
# What's up with the file lease mechanism?
# What's up with the file lease mechanism?

Revision as of 15:18, 12 March 2008

Readings

Garth A. Gibson et al., "A Cost-Effective, High-Bandwidth Storage Architecture" (1998)

Sanjay Ghemawat et al., "The Google File System" (2003)

Atul Adya et al.,"FARSITE: Federated, Available, and Reliable Storage for an Incompletely Trusted Environment" (2002)

William J. Bolosky et al., "The Farsite Project: A Retrospective" (2007)

Questions

  1. What were the target environments for these filesystems? How did these environments shape their assumptions?
  2. What are the key ideas behind each filesystem?
  3. What are the strengths and weaknesses of each design?
  4. What are the strengths and weaknesses of each implementation?
  5. Which system is best suited for today's Internet? How about tomorrow's?

Questions for NASD

  1. Is giving direct access between client and drive a good idea?
  2. Are there substantial advantages in storing variable-length objects over fixed-sized blocks?
  3. Is putting the filesystem on the drive a good idea? Should more control and awareness be given to hardware devices?
  4. What are the strengths and weaknesses of the capability-based cryptography which NASD makes use of?

Questions for GoogleFS

  1. How does the Google file system implement security?
  • Doesn't
  1. Is using a central server (point of access) a good design decision?
  • It certainly works
  • Makes administration easier
  • As long as redundant and fast, why bother with the hassle of synchronization?
  1. Is removing random writes a good idea?
  • They didn't actually remove it, but it is horribly inneficient
  • BigTable specifically reduces the instances of random write and implements a way to append the same information
  • Implementing this style would have killed their model
  1. Is the speedup attained by GFS's record-append method worth the sacrifice of Application overhead?
  • Needing to manage duplication yourself
  • Guaranteed access to specific offsets, which helps consistency, though wastes space


Questions for Farsite

  1. Byzantine fault tolerance?
  • Have several entities, some of which may be compromised in some way. They might either be corrupted, compromised, or simply down.
    • Assumptions for a Byzantine protocol? Failures are independent, so they are not colluding.
  • Good model for hardware failures
  • Bad model for software failures (infection, etc)
  • Not really the appropriate solution, software is your main likely culprit, not hardware problems.
  1. How similar and different compared to OceanStore?
  2. What's up with the file lease mechanism?

Questions for Farsite retrospective

  1. If using different programming methods... how does this file-system work given different programming models
  2. Details of Byzantine fault tolerance