Distributed File Systems Flashcards
(3 cards)
what is NFS (Network File System) and Sprite?
A DS that allows users on client machines to access files over a network as if they were on a local disk.
Advantages and Disadvantages of NFS
A1. Uses Stateless Interaction as primary mechanism, Greater Robustness (can handle server crashes easily)
A2. NFS is simplier in design, due to stateless protocol.
D1. Weak Consistency (due to statelessness), does not keep track of which clients are using which files.
D2. Slower write operations due to stateless protocol.
Advantages and Disadvantages of Sprite
A1. Better Performance via caching.
A2. More consistent view of files compared to NFS.Greater Consistency
D1. More complex implementation in managing the server’s state.
D2. Higher overhead due to maintaining state and cache consistency.