Skip to content

reetuparna/CS739-p2

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

69 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CS739-p2

Distributed AFS built on top of FUSE

Source Code:

The source code is in src. It contains its own README.md explaining how to run the project.

Performance Scripts:

The performance scripts are in pythonfiles. It contains its own README.md explaining how to run the performances.

Rubric Points:

1. Functionality & Correctness

1.1 Posix Compliance

This part hosts the posix compliant fuse apis: https://github.com/hemal7735/CS739-p2/blob/main/src/fuse-client.cc#L333-L350

1.2 AFS Protocol and Semantics

  • Protocol Primitive : Protos define the interface for client-server communications
  • Update Visibility: This is in both afs_client.cc and afs_server.cc in Close() and CloseStream() operation.
  • Stale Cache: This is in afs_client.cc in Open() and OpenStream() operations.

1.3 Durability

  • Client-side FUSE-based file system is crash consistent: We are using .temp and .consistent files for crash consistency. More details in report.pdf and slides.pdf.
  • Server-side persistence: Server stores files using .temp and atomically rename operation. It is in Close() and CloseStream() functions. More details in report.pdf and slides.pdf.

1.4 Crash Recovery Protocol

2. Measurement

2.1 Performance

Graphs are given in slides.pdf and report.pdf

2.2 Reliability

Crash recovery protocol is given in both slides.pdf and report.pdf. Crash demos are hosted here: https://uwprod-my.sharepoint.com/:f:/g/personal/hrpatel5_wisc_edu/EtFDuGALu4JEqsQmdBvuflIBPq7L-0CY5VDWCFwVFMSa7g?e=55K7tJ

3. Delivery

3.1 Presentation

  • Please see slides.pdf

3.2 Report

  • Please see report.pdf

3.3 Source Code

  • done

About

Distributed AFS built on top of FUSE

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 79.4%
  • CMake 13.3%
  • Python 7.3%