From 4b755e8935e626d35e9ab9ee2b25906a658846c2 Mon Sep 17 00:00:00 2001 From: Baohua Yang Date: Thu, 14 Nov 2019 14:14:51 -0800 Subject: [PATCH] docs: Update the raft usage by adding Hyperledger project --- raft/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/raft/README.md b/raft/README.md index 83cf04035c9..40fa52e4522 100644 --- a/raft/README.md +++ b/raft/README.md @@ -5,7 +5,7 @@ The state machine is kept in sync through the use of a replicated log. For more details on Raft, see "In Search of an Understandable Consensus Algorithm" (https://raft.github.io/raft.pdf) by Diego Ongaro and John Ousterhout. -This Raft library is stable and feature complete. As of 2016, it is **the most widely used** Raft library in production, serving tens of thousands clusters each day. It powers distributed systems such as etcd, Kubernetes, Docker Swarm, Cloud Foundry Diego, CockroachDB, TiDB, Project Calico, Flannel, and more. +This Raft library is stable and feature complete. As of 2016, it is **the most widely used** Raft library in production, serving tens of thousands clusters each day. It powers distributed systems such as etcd, Kubernetes, Docker Swarm, Cloud Foundry Diego, CockroachDB, TiDB, Project Calico, Flannel, Hyperledger and more. Most Raft implementations have a monolithic design, including storage handling, messaging serialization, and network transport. This library instead follows a minimalistic design philosophy by only implementing the core raft algorithm. This minimalism buys flexibility, determinism, and performance.