Difference between revisions of "DSM Review, NFS, AFS"

From Soma-notes
Jump to navigation Jump to search
Line 23: Line 23:
== In Class Notes ==
== In Class Notes ==
=== Goals of NFS and AFS ===
=== Goals of NFS and AFS ===
 
==== NFS ====
====NFS====
* Remote access like local access
* Remote access like local access
* Scale to ~50 clients
* Scale to ~50 clients
Line 30: Line 29:
* Lightweight
* Lightweight


====AFS====
==== AFS ====
* Seamless
* Remote access like local access
* Scale to 5000 - 10000 hosts
* Scale to 5000 - 10000 hosts
* Portability (POSIX)
* Portability (POSIX)


=== Differences ===
=== Differences ===
 
==== NFS ====
====NFS====
# NFS does a system call for every read/write
# NFS does a system call for every read/write
# NFS can operate with diskless clients
# NFS can operate with diskless clients
# Lightweight clients
# Lightweight clients
# Files are up-to-date, can be inconsistent
# Trusted clients


====AFS====
==== AFS ====
# AFS does a system call only on retrieving and storing a file
# AFS does a system call only on retrieving and storing a file
# AFS assumes clients have a hard disk
# AFS assumes clients have a hard disk
# Heavier-weight client
# Heavier-weight client
# Files may be stale, but data is consistent
# Untrusted clients
=== Aside: Kerberos for Dummies ===
<pre>
1. Client Identification:    <client> ==> <kerberos>
2. Client Request Ticket:    <client> <== <kerberos>
3. Authenticate with Ticket: <client> ==> <server>
</pre>

Revision as of 16:14, 13 February 2008

Readings

Questions

For the Protic paper, consider the following:

  1. What were the major problems addressed in DSM research following Kai Li's dissertation?
  2. Did these advances change the scope of environments and problems appropriate for DSM?
  3. Why aren't DSM systems commonly in use today?


For the NFS and AFS papers, consider these questions:

  1. What were the key design goals of NFS and AFS?
  2. How well did they achieve their goals?
  3. What are their limitations?
  4. How suitable are NFS and AFS in modern small networks? Enterprise networks? Internet-scale applications? Why?

In Class Notes

Goals of NFS and AFS

NFS

  • Remote access like local access
  • Scale to ~50 clients
  • Portability
  • Lightweight

AFS

  • Remote access like local access
  • Scale to 5000 - 10000 hosts
  • Portability (POSIX)

Differences

NFS

  1. NFS does a system call for every read/write
  2. NFS can operate with diskless clients
  3. Lightweight clients
  4. Files are up-to-date, can be inconsistent
  5. Trusted clients

AFS

  1. AFS does a system call only on retrieving and storing a file
  2. AFS assumes clients have a hard disk
  3. Heavier-weight client
  4. Files may be stale, but data is consistent
  5. Untrusted clients

Aside: Kerberos for Dummies

1. Client Identification:    <client> ==> <kerberos> 
2. Client Request Ticket:    <client> <== <kerberos>
3. Authenticate with Ticket: <client> ==> <server>