/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

www.mattritter.me
| | tomaugspurger.net
3.7 parsecs away

Travel
| | Last week, I was fortunate to attend Dave Beazley's Rafting Trip course. The pretext of the course is to implement the Raft Consensus Algorithm. I'll post more about Raft, and the journey of implementing, it later. But in brief, Raft is an algorithm that lets a cluster of machines work together to reliably do something. If you had a service that needed to stay up (and stay consistent), even if some of the machines in the cluster went down, then you might want to use Raft.
| | eli.thegreenplace.net
2.2 parsecs away

Travel
| | [AI summary] An introductory post from a blog series detailing the implementation of the Raft distributed consensus algorithm in the Go programming language.
| | briankung.dev
3.6 parsecs away

Travel
| | I survived David Beazley's weeklong course on the Raft consensus algorithm that powers technologies like Kubernetes, MongoDB, and Neo4j. Image from https://raft.github.io/ The Raft Consensus Algorithm is a way for a gaggle of computers to agree on a sequence of events, or a "log" of events. Raft is useful for things like databases - once...
| | muratbuffalo.blogspot.com
30.8 parsecs away

Travel
| This paper recently appeared at ACM SIGOPS Operating Systems Review. It provides an overview of the shared log abstraction in distributed s...