-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Videos of conference talks #18
Open
manishkk
wants to merge
8
commits into
theanalyst:master
Choose a base branch
from
manishkk:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
cd406d6
Update README.md
manishkk 314b06a
Update README.md
manishkk bbdcf8e
Update README.md
manishkk 9bcf723
Update README.md
manishkk f8e8d20
Update README.md
manishkk 65df3bc
Update README.md
manishkk cbb26ba
Update README.md
manishkk 224a5c2
Update README.md
manishkk File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,6 +42,7 @@ Must read papers on distributed systems. While nearly *all* of Lamport's work sh | |
### Distributed Consensus and Fault-Tolerance | ||
- [Practicle Byzantine Fault Tolerance](http://pmg.csail.mit.edu/papers/osdi99.pdf) | ||
- [The Byzantine Generals Problem](http://bnrg.cs.berkeley.edu/~adj/cs16x/hand-outs/Original_Byzantine.pdf) | ||
- [Impossibility of Distributed Consensus with One Faulty Process](http://macs.citadel.edu/rudolphg/csci604/ImpossibilityofConsensus.pdf) | ||
- [The Part Time Parliament](http://research.microsoft.com/en-us/um/people/lamport/pubs/lamport-paxos.pdf) Paxos, Lamport's original Paxos paper, a bit difficult to understand, may require multiple passes | ||
- [Paxos Made Simple](http://research.microsoft.com/en-us/um/people/lamport/pubs/paxos-simple.pdf), a more terse readable Paxos paper by Lamport himself. Shorter and more easier compared to the original. | ||
- [The Chubby Lock Service for loosely coupled distributed systems](http://static.googleusercontent.com/media/research.google.com/en//archive/chubby-osdi06.pdf) Google's lock service used for loosely coupled distributed systems. Sort of Paxos as a Service for building other distributed systems. Primary inspiration behind other Service Discovery & Coordination tools like Zookeeper, etcd, Consul etc. | ||
|
@@ -54,7 +55,20 @@ While designing distributed systems are hard enough, testing them is even harder | |
|
||
### Programming Model | ||
- [Distributed Programming Model](http://web.cs.ucdavis.edu/~pandey/Research/Papers/icdcs01.pdf) | ||
- [PSync: a partially synchronous language for fault-tolerant distributed algorithms](http://www.di.ens.fr/~cezarad/popl16.pdf) | ||
- [PSync: a partially synchronous language for fault-tolerant distributed algorithms](http://www.di.ens.fr/~cezarad/popl16.pdf) Video: [Conference Video](https://www.youtube.com/watch?v=jxfq9_L9T1U&t=51s) | ||
- [Programming Models for Distributed Computing](http://heather.miller.am/teaching/cs7680/) | ||
- [Logic and Lattices for Distributed Programming](http://db.cs.berkeley.edu/papers/UCB-lattice-tr.pdf) | ||
|
||
### Verification in Distributed System | ||
- [Jepsen](https://github.com/jepsen-io/jepsen) A framework for distributed systems verification, with fault injection | ||
- [Verdi](http://verdi.uwplse.org/) A Framework for Implementing and Formally Verifying Distributed Systems [Paper](http://verdi.uwplse.org/verdi.pdf) | ||
|
||
### Videos of Conference Talks | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Given the presence of a 'Videos' section, it would be better to organize all videos under a single title and categorize them with tags such as '[Conference Talks]' for better clarity and organization. |
||
- [Programming and Proving with Distributed Protocols](https://www.youtube.com/watch?v=zuuBEXhM4tU&t=492s), POPL 2018 | ||
- [IronFleet: proving practical distributed systems correct](https://www.youtube.com/watch?v=KRmItldCU-Y), SoSP 2015 | ||
- [Software Model Checking for Verifying Distributed Algorithms](https://www.youtube.com/watch?v=hTbI0t7pNtM), CMU Talk | ||
- [Practical Byzantine Fault-Tolerance](https://www.youtube.com/watch?v=Q0xYCN-rvUs), Microsoft Research | ||
|
||
|
||
## Courses | ||
- [Reliable Distributed Algorithms, Part 1](https://www.edx.org/course/reliable-distributed-algorithms-part-1-kthx-id2203-1x-0), KTH Sweden | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since there is already a title that reads 'Verification of Distributed Systems' it would be better to maintain consistency. I suggest update the title to 'Verification of Distributed Systems' for uniformity.