Go Protocol Buffer Shell PowerShell Makefile Assembly
Latest commit 384a84c May 26, 2017 @heyitsanthony heyitsanthony committed on GitHub Merge pull request #7990 from heyitsanthony/fix-cov-authfromkeyperm
etcdctl, e2e: use 0xe7cd as argument separator in cov-enabled etcdctl
Permalink
Failed to load latest commit information.
.github *: eschew you from documentation Mar 6, 2017
Documentation Merge pull request #7975 from raoofm/patch-11 May 24, 2017
alarm *: update LICENSE header May 13, 2016
auth *: simply ignore ErrAuthNotEnabled in clientv3 if auth is not enabled Apr 19, 2017
client pkg/srv: package for SRV utilities May 5, 2017
clientv3 integration: creation of cluster now takes maxTxnOps May 24, 2017
cmd vendor: revendor speakeasy to include unix license file Apr 26, 2017
compactor compactor: Make periodic compactor runs every hour May 4, 2017
contrib *: fill out blank package godocs May 18, 2017
discovery pkg/srv: package for SRV utilities May 5, 2017
e2e etcdctl, e2e: use 0xe7cd as argument separator in cov-enabled etcdctl May 25, 2017
embed Merge pull request #7968 from fanminshi/make_maxRequestBytes_configur… May 25, 2017
error *: update LICENSE header May 13, 2016
etcdctl etcdctl, e2e: use 0xe7cd as argument separator in cov-enabled etcdctl May 25, 2017
etcdmain etcdserver: add --max-request-bytes flag May 25, 2017
etcdserver v3rpc: change grpc max recv size as needed. May 25, 2017
hack *: eschew you from documentation Mar 6, 2017
integration v3rpc: change grpc max recv size as needed. May 25, 2017
lease *: add swagger and grpc-gateway assets for v3lock and v3election Apr 10, 2017
logos logos: add SVG and PNG logos Dec 18, 2014
mvcc backend: force initial mmap size to 0 for windows May 12, 2017
pkg *: remove unused, fix typos May 18, 2017
proxy *: fill out blank package godocs May 18, 2017
raft Merge pull request #7830 from aaronlehmann/new-nodes-start-active May 5, 2017
rafthttp Merge pull request #7687 from heyitsanthony/deny-tls-ipsan Apr 13, 2017
scripts Documentation, scripts: regenerate protobuf docs with updated protodoc May 19, 2017
snap snap, etcdserver: tighten up snapshot path handling May 11, 2017
store store: replace testify asserts with testutil asserts Apr 23, 2017
tools benchmark: support multiple clients/conns in watch-latency benchmark May 24, 2017
version version: bump up to 3.2.0-rc.1+git May 19, 2017
wal *: add swagger and grpc-gateway assets for v3lock and v3election Apr 10, 2017
.dockerignore Add .dockerignore to avoid including .git in docker build context Aug 15, 2014
.gitignore .gitignore: Adding .idea to .gitignore Jan 25, 2017
.godir create .godir Nov 18, 2014
.header .header: update to 'etcd Authors' May 13, 2016
.travis.yml travis: run tests with Go 1.8.3 May 24, 2017
CONTRIBUTING.md *: eschew you from documentation Mar 6, 2017
DCO docs(readme/contrib): clean up README, merge changes from CONTRIBUTIN… Apr 4, 2014
Dockerfile *: separate Dockerfile for quay build trigger Jun 24, 2016
Dockerfile-release Dockerfile-release: add nsswitch.conf into image Mar 21, 2017
Dockerfile-release.arm64 build-docker: Updates for multi-arch release Apr 21, 2017
Dockerfile-release.ppc64le build-docker: Updates for multi-arch release Apr 21, 2017
LICENSE License project under the Apache License Version 2.0 Jul 31, 2013
MAINTAINERS MAINTAINERS: add Fanmin Feb 23, 2017
NEWS NEWS: update v3.1.6 Apr 18, 2017
NOTICE feat(*): initial commit Jan 19, 2014
Procfile Procfile: v3 as default May 23, 2016
README.md Merge pull request #7893 from philips/readme-tagline May 8, 2017
ROADMAP.md ROADMAP: make 'release-3.2' stable branch May 24, 2017
V2Procfile Procfile: v3 as default May 23, 2016
bill-of-materials.json scripts: add 'BOM' update script May 9, 2017
bill-of-materials.override.json *: add bill of materials Apr 17, 2017
build build: remove dir use -r flag Dec 13, 2016
build.bat vendor: only vendor on emitted binaries Apr 6, 2016
build.ps1 build: add option to enable binaries stripping for windows Oct 19, 2016
cover test, scripts: use /usr/bin/env to find bash Aug 9, 2015
etcd.conf.yml.sample embed/etcd.go: make v2 endpoint optional. fixes #7100 Jan 20, 2017
glide.lock vendor: revendor speakeasy to include unix license file Apr 26, 2017
glide.yaml vendor: revendor speakeasy to include unix license file Apr 26, 2017
main.go *: update LICENSE header May 13, 2016
main_test.go *: remove os.Kill from signal.Notify Apr 7, 2017
test test: release tests with v3.2+ May 24, 2017

README.md

etcd

Go Report Card Build Status Build Status Docker Repository on Quay.io

Note: The master branch may be in an unstable or even broken state during development. Please use releases instead of the master branch in order to get stable binaries.

the etcd v2 documentation has moved

etcd Logo

etcd is a distributed reliable key-value store for the most critical data of a distributed system, with a focus on being:

  • Simple: well-defined, user-facing API (gRPC)
  • Secure: automatic TLS with optional client cert authentication
  • Fast: benchmarked 10,000 writes/sec
  • Reliable: properly distributed using Raft

etcd is written in Go and uses the Raft consensus algorithm to manage a highly-available replicated log.

etcd is used in production by many companies, and the development team stands behind it in critical deployment scenarios, where etcd is frequently teamed with applications such as Kubernetes, fleet, locksmith, vulcand, Doorman, and many others. Reliability is further ensured by rigorous testing.

See etcdctl for a simple command line client.

Getting started

Getting etcd

The easiest way to get etcd is to use one of the pre-built release binaries which are available for OSX, Linux, Windows, rkt, and Docker. Instructions for using these binaries are on the GitHub releases page.

For those wanting to try the very latest version, build the latest version of etcd from the master branch. This first needs Go installed (version 1.8+ is required). All development occurs on master, including new features and bug fixes. Bug fixes are first targeted at master and subsequently ported to release branches, as described in the branch management guide.

Running etcd

First start a single-member cluster of etcd:

./bin/etcd

This will bring up etcd listening on port 2379 for client communication and on port 2380 for server-to-server communication.

Next, let's set a single key, and then retrieve it:

ETCDCTL_API=3 etcdctl put mykey "this is awesome"
ETCDCTL_API=3 etcdctl get mykey

That's it! etcd is now running and serving client requests. For more

etcd TCP ports

The official etcd ports are 2379 for client requests, and 2380 for peer communication.

Running a local etcd cluster

First install goreman, which manages Procfile-based applications.

Our Procfile script will set up a local example cluster. Start it with:

goreman start

This will bring up 3 etcd members infra1, infra2 and infra3 and etcd proxy proxy, which runs locally and composes a cluster.

Every cluster member and proxy accepts key value reads and key value writes.

Running etcd on Kubernetes

To run an etcd cluster on Kubernetes, try etcd operator.

Next steps

Now it's time to dig into the full etcd API and other guides.

Contact

Contributing

See CONTRIBUTING for details on submitting patches and the contribution workflow.

Reporting bugs

See reporting bugs for details about reporting any issues.

License

etcd is under the Apache 2.0 license. See the LICENSE file for details.