Skip to content

Latest commit

 

History

History
17 lines (14 loc) · 679 Bytes

README.md

File metadata and controls

17 lines (14 loc) · 679 Bytes

MIT6.824 Distributed Systems

Class main page: http://nil.csail.mit.edu/6.824/2021/schedule.html

This repo is my self-learning journey of MIT6.824 2021 Spring version. Below is my implementation:

  • Lab 1 - MapReduce
  • Lab 2 - Raft
    • Part 2A - Implement Raft leader election and heartbeats
    • Part 2B - Implement the leader and follower code to append new log entries
    • Part 2C - Complete the functions persist() and readPersist() in raft.go, and realized faster roll-back
  • Lab 3 - Fault-tolerant Key/Value Service
    • Part 3A - Key/value service without log compaction
    • Part 3B - Key/value service with log compaction