← All posts

Distributed configuration data with etcd

July 23, 2013

Originally published on the CoreOS blog (archived copy) .

Today we would like to announce etcd, a highly available key value store for shared configuration data. CoreOS built etcd to solve the problem of shared configuration and service discovery. etcd is inspired by projects like Zookeeper, or doozer, but is a completely new piece of software. Some of the key design features:

etcd uses the raft algorithm; a consensus algorithm for replicated logs. The CoreOS team has been heavy contributors to the go-raft implementation, which is maintained by benbjohnson. We have our own implementation, but it is mainly a staging repo before being merged upstream. Thank you to Ben for his awesome contributions to date!

etcd is written in Go.

Check out the documentation on github for many examples of how to use etcd to share configuration data, watching for changes on particular keys, or perform master election.


← All posts