NASD, GoogleFS, Farsite: Difference between revisions
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? | ||
- | |||
# Is using a central server (point of access) a good design decision? | # Is using a central server (point of access) a good design decision? | ||
-MAkes administration easier | |||
-As long as redundant and fast, why bother with the hassle or synchronization? | |||
# Is removing random writes a good idea? | # Is removing random writes a good idea? | ||
# 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? |
Revision as of 19:05, 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)
William J. Bolosky et al., "The Farsite Project: A Retrospective" (2007)
Questions
- What were the target environments for these filesystems? How did these environments shape their assumptions?
- What are the key ideas behind each filesystem?
- What are the strengths and weaknesses of each design?
- What are the strengths and weaknesses of each implementation?
- Which system is best suited for today's Internet? How about tomorrow's?
Questions for NASD
- Is giving direct access between client and drive a good idea?
- Are there substantial advantages in storing variable-length objects over fixed-sized blocks?
- Is putting the filesystem on the drive a good idea? Should more control and awareness be given to hardware devices?
- What are the strengths and weaknesses of the capability-based cryptography which NASD makes use of?
Questions for GoogleFS
- How does the Google file system implement security?
-
- Is using a central server (point of access) a good design decision?
-MAkes administration easier -As long as redundant and fast, why bother with the hassle or synchronization?
- Is removing random writes a good idea?
- Is the speedup attained by GFS's record-append method worth the sacrifice of Application overhead?
Questions for Farsite
- Byzantine fault tolerance?
- How similar and different compared to OceanStore?
- What's up with the file lease mechanism?
Questions for Farsite retrospective
- If using different programming methods... how does this file-system work given different programming models
- Details of Byzantine fault tolerance