Peer-to-Peer Architectures Introduction
Peer-to-peer (P2P) architectures are networked systems where each node in the network is on equal footing with every other node.
The largest and most successful P2P network is the Internet itself. Every machine connected to the network gets an IP address and can interact with any other machine on the Internet so long as it knows that machine’s IP address.
The Web is not a P2P architecture because it sees some machines as clients and some as servers. They are not peers.
Special purpose P2P systems are frequently built on top of the Internet. Such a network is called an overlay network.
Designing a functional P2P system can be difficult because humans think in stories—linearly. And we love centralized systems because they’re easy to understand.
This lesson introduces concepts and algorithms for building practical decentralized peer-to-peer systems.
Lesson Objectives
After completing this lesson, you should be able to
- Explain the eight fallacies of distributed computing
- Give examples of the CAP theorem and explain tradeoffs
- Show how distributed file sharing works and relate it to consensus
- Describe distributed discovery and show how a distributed hash table works
Required Reading/Viewing
- Peer-to-Peer Architectures Links to an external site. (Slide Doc) (PDF Download PDF)
- Rainbow’s End by Vernor Vinge (start).
- Fallacies of Distributed Computing Explained Download Fallacies of Distributed Computing Explained (PDF) by Arnon Rotem-Gal-Oz
- A Plain English Introduction to CAP Theorem Links to an external site. by Kaushik Sathupadi
- Perspectives on the CAP Theorem Download Perspectives on the CAP Theorem (PDF) by Seth Gilbert and Nancy A. Lynch
- The Scalability of Swarming Peer-to-Peer Content Delivery Download The Scalability of Swarming Peer-to-Peer Content Delivery (PDF) by Daniel Stutzbach, Daniel Zappala, and Reza Rejaie
- BitTorrent, how it works? Links to an external site.
- Intro to Distributed Hash Tables Links to an external site. by real
Additional Resources
- Links to an external site.Chord: a scalable peer-to-peer lookup protocol for internet applications Download Chord: a scalable peer-to-peer lookup protocol for internet applications (PDF) by Ion Stoica, al.
- Availability and Consistency Links to an external site. by Werner Vogels
- Eventually Consistent Links to an external site. – Revisited by Werner Vogels
- The Short History of Napster 1.0 Links to an external site. by Alex Winter