etcd是一个高可用的Key/Value存储系统,主要用于分享配置和服务发现。etcd的灵感来自于ZooKeeper和Doozer,侧重于:
简单:支持curl方式的用户API(HTTP+JSON)
安全:可选SSL客户端证书认证
快速:单实例可达每秒10000次写操作
可靠:使用Raft实现分布式
EtcdiswritteninGoandusestheraftconsensusalgorithmtomanageahighly-availablereplicatedlog.
etcd是一个高可用的Key/Value存储系统,主要用于分享配置和服务发现。etcd的灵感来自于ZooKeeper和Doozer,侧重于:
简单:支持curl方式的用户API(HTTP+JSON)
安全:可选SSL客户端证书认证
快速:单实例可达每秒10000次写操作
可靠:使用Raft实现分布式
EtcdiswritteninGoandusestheraftconsensusalgorithmtomanageahighly-availablereplicatedlog.
评论