etcdKey/Value 存储系统
etcd 是一个高可用的 Key/Value 存储系统,主要用于分享配置和服务发现。etcd 的灵感来自于 ZooKeeper 和 Doozer,侧重于:
-
简单:支持 curl 方式的用户 API (HTTP+JSON)
-
安全:可选 SSL 客户端证书认证
-
快速:单实例可达每秒 10000 次写操作
-
可靠:使用 Raft 实现分布式
Etcd is written in Go and uses the raft consensus algorithm to manage a highly-available replicated log.
评论