From fc0ec5521aaae7cb480acc3bf21928f178f5f403 Mon Sep 17 00:00:00 2001 From: Pavel Kalinnikov Date: Mon, 19 Dec 2022 08:57:22 +0000 Subject: [PATCH] Update etcd/raft link in life of a query --- docs/tech-notes/life_of_a_query.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tech-notes/life_of_a_query.md b/docs/tech-notes/life_of_a_query.md index 04b64560c4bf..3f41d33601ab 100644 --- a/docs/tech-notes/life_of_a_query.md +++ b/docs/tech-notes/life_of_a_query.md @@ -1318,7 +1318,7 @@ which inserts it into the where it eventually ends up being [proposed to `raftGroup`](https://github.com/cockroachdb/cockroach/blob/8de3463817826d431bf0c6433ad3eb81bf06c9b3/pkg/kv/kvserver/replica_proposal_buf.go#L692). This `raftGroup` is a handle for the Raft consensus cluster, implemented by the -[Etcd Raft library](https://github.com/coreos/etcd/tree/master/raft). We treat +[Etcd Raft library](https://github.com/etcd-io/etcd/). We treat this as a black box that we submit command proposals to, and it deals with running them through Raft consensus, committing them to the replicated command log, and applying them onto every replica.