• Stars
    star
    187
  • Rank 205,785 (Top 5 %)
  • Language
    Go
  • License
    Apache License 2.0
  • Created over 6 years ago
  • Updated about 3 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

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, consistent key-value store for shared configuration and service discovery, 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, you can build the latest version of etcd from the master branch. You will first need Go installed on your machine (version 1.7+ 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

If you want to run 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 issue you may encounter.

License

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

More Repositories

1

Lua-Source-Internal

Lua source internal
1,442
star
2

Lua-5.1.4-codedump

Lua 5.1.4版本代码注释
C
372
star
3

x86-asm-book-source

带注释的《X86汇编语言-从实模式到保护模式》一书代码
Assembly
334
star
4

awesome-systemtap-cn

采集网络上优秀的systemtap学习资源
273
star
5

storage-paper-reading-cn

存储(分布式、存储引擎等)领域相关的论文阅读笔记
186
star
6

qnode

qnode(cute node) - C + Lua + Actor Model = Erlang-like system
C++
165
star
7

libraft

C++ raft lib
C++
126
star
8

AOI

aoi algorithm
C++
84
star
9

awesome-linux-system-cn

收集网络上讲解Linux系统原理的优秀文章、文档
75
star
10

latex-template

TeX
59
star
11

libcr

a coroutine lib for C users,in non-intrusive mode.
C
54
star
12

paxos

Paxos algorithm demo,from mit 6.824 lab 3
Go
25
star
13

ucore-codedump

清华大学ucore项目代码注释版
C
12
star
14

leveldb-1.9.0-codedump

leveldb-1.9.0 注解版
C++
11
star
15

lichuang.github.io

lichuang.github.io
HTML
10
star
16

MIT6.824-golabs-2015

MIT 6.824 分布式课程2015年的作业代码
Go
6
star
17

awesome-game-server

收集网络上关于游戏服务器编程相关的资源
6
star
18

ldb

a Lua debugger lib written in C
C
4
star
19

awesome-qt

collect awesome qt resource
3
star
20

udb

C++
3
star
21

awesome-contagion-knowledge

收集介绍传染病相关的知识资料链接
3
star
22

TAPL

types-and-programming-languages
OCaml
2
star
23

stress

Rust
1
star
24

algorithm_notes

算法笔记
Python
1
star
25

commoncache

Automatically exported from code.google.com/p/commoncache
C
1
star
26

my-latex-template

TeX
1
star
27

latex-tikz-sample

latex tikz samples
TeX
1
star