From 971bf85b17f3ce3fbda8a4a3e54cd815ba332de2 Mon Sep 17 00:00:00 2001 From: Jerome Petazzoni Date: Mon, 28 Nov 2016 17:44:15 -0800 Subject: [PATCH] Clarify raft usage --- docs/index.html | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/docs/index.html b/docs/index.html index c8808a1d..e7acf327 100644 --- a/docs/index.html +++ b/docs/index.html @@ -804,7 +804,8 @@ class: title ## SwarmKit features -- Highly-available, distributed store based on Raft +- Highly-available, distributed store based on [Raft]( + https://en.wikipedia.org/wiki/Raft_(computer_science))
(more on next slide) - *Services* managed with a *declarative API* @@ -823,11 +824,11 @@ class: title ## Where is the key/value store? -- Many other orchestration systems use a key/value store +- Many orchestration systems use a key/value store backed by a consensus algorithm
- (k8s→etcd, mesos→zookeeper, etc.) + (k8s→etcd→Raft, mesos→zookeeper→ZAB, etc.) -- SwarmKit stores information directly in Raft +- SwarmKit implements the Raft algorithm directly
(Nomad is similar; thanks [@cbednarski](https://twitter.com/@cbednarski), [@diptanu](https://twitter.com/diptanu) and others for point it out!)