Skip to content

arajitsamanta/distributed-system

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Distributed System

Main focus when designing

  1. Fault Tolerance

    • Availibility: Can be achieved using replication
    • Recoverability: Can be achieved using logging/transaction, durable storage etc.
  2. Consistency

    Does get() returns latest put()?

    • Strong consistency
    • Weak consistency
    • Eventual Consistency
  3. Performance

    • Scalable throughput
    • Lower latency

Problems

Map Reduce

https://pdos.csail.mit.edu/6.824/papers/mapreduce.pdf

Fault Tolernace aspects

  • Co-ordinator re-runs map/redue function if worker node fails
  • Map/Reduce functions are functional/determenistic and can be run more than once
  • Other fail points
    • Can co-ordinator fails? NO
    • Slow workers(Stagglers)? Co-ordinator can run backup tasks and assigned to other worker node

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published