etcd是一个用于共享配置和服务的高可用键值存储系统,由CoreOS使用开发并作为CoreOS的基础服务启动。etcd的灵感来源于Apache ZooKeeper和doozer,其特点:
· 简单:可用curl进行操作(HTTP+JSON)
· 安全:可使用SSL客户端证书验证
· 快速:基准测试在每个实例1000次写入每秒
· 可靠: 使用Raft协议来进行合理的分布式
etcd是go语言写的,并使用Raft一致性算法来管理一个高可用的复制日志。Raft协议这里有个动画版教程,很赞的哦。当前etcd版本为0.4.6。
安装etcd
etcd的安装非常简单,可以直接下载编译后的可执行文件。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
root@docker01# wget https://github.com/coreos/etcd/releases/download/v0.4.6/etcd-v0.4.6-linux-amd64.tar.gz root@docker01# tar xvzf etcd-v0.4.6-linux-amd64.tar.gz ...... # 解压后,只包含两个可执行文件etcd、etcdctl以及两个README文件。etcd是etcd服务程序,而etcdctl是一个客户端工具。 root@docker01# cd etcd-v0.4.6-linux-amd64/ root@docker01# ln -s `pwd`/etcd /usr/bin/etcd root@docker01# ln -s `pwd`/etcdctl /usr/bin/etcdctl #验证版本 root@docker01# etcd -version etcd version 0.4.6 #启动一个单机实例,直接执行etcd即可。etcd使用4001来接收HTTP请求,7001作为集群节点通讯。 root@docker01# etcd ...... [etcd] Dec 31 14:54:25.547 INFO | etcd server [name docker01, listen on :4001, advertised url http://127.0.0.1:4001] [etcd] Dec 31 14:54:25.547 INFO | peer server [name docker01, listen on :7001, advertised url http://127.0.0.1:7001] ...... |
etcd的存储模型和ZooKeeper差不多,都是类似文件系统的树形结构。请参考 zookeeper:一个用于分布式系统的分布式协作服务程序和etcd file system。但与ZooKeeper不同的是,etcd中区分文件节点(file node)和目录节点(directory node)。当目标为目录节点时,GET操作获得它的子节点。
使用etcdctl
etcdctl包含了etcd所有的操作,基本等同于ZooKeeper的功能。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 |
#设置一个键的值 etcdctl set /foo/bar "hello world" hello world #设置一个带time to live的键 etcdctl set /foo/bar "hello world" --ttl 60 hello world #当值为"hello world"时,替换为"Goodbye world"。 etcdctl set /foo/bar "Goodbye world" --swap-with-value "hello world" etcdctl set /foo/bar "Goodbye world" --swap-with-value "hello world" Goodbye world etcdctl set /foo/bar "Goodbye world" --swap-with-value "hello world" Error: 101: Compare failed ([hello world != Goodbye world]) [7] #仅当不存在时创建 etcdctl mk /foo/new_bar "Hello world" Hello world etcdctl mk /foo/new_bar "Hello world" Error: 105: Key already exists (/foo/new_bar) [8] #仅当存在时更新建 etcdctl update /foo/bar "hello etcd" hello etcd #创建一个directory node etcdctl mkdir /foo/dir #创建一个directory node,或者将一个file node设置成directory node etcdctl setDir /foo/dir #删除file node etcdctl rm /foo/bar #删除directory node etcdctl rmdir /foo/dir etcdctl rm /foo/dir --dir #递归删除 etcdctl rm /foo/dir --recursive #当值为"Hello world"时删除 etcdctl rm /foo/bar --with-value "Hello world" #获得某个键的值 etcdctl get /foo/bar hello, etcd #获得某个键在集群内的一致性值 etcdctl get /foo/bar --consistent hello, etcd #获得一些扩展的元信息 etcdctl -o extended get /foo/bar Key: /foo/bar Created-Index: 14 Modified-Index: 14 TTL: 0 Etcd-Index: 14 Raft-Index: 5013 Raft-Term: 0 hello, etcd #其中,索引是一个对于etcd上任何改变中唯一、单调递增的整数。这个特殊的索引反映了etcd在某个key被创建后的时间点的etcd状态机。比如此时新建一个/foo/bar1,那么该节点的created-index和modified-index为15,代表了当前etcd的最新改变。 #列出目录的内容,-p则对directory node以/结尾 etcdctl ls /foo etcdctl ls /foo /foo/bar /foo/new_bar /foo/dir etcdctl ls / --recursive /foo /foo/bar /foo/new_bar /foo/dir #设置监视(watch),此时该命令会一直等待并输出下一次变化。 etcdctl watch /foo/bar hello, etcd! #while another terminal etcdctl update /foo/bar "hello, etcd!" hello, etcd! #持续监视更新 etcdctl watch /foo/bar --forever ...... #使用Ctrl+c结束 #当反生变化时执行一个应用 etcdctl exec-watch /foo/bar -- sh -c "echo hi" hi hi ...... #监视目录下所有节点的改变 etcdctl exec-watch --recursive /foo -- sh -c "echo hi" |
通过curl来维护etcd
下面是几个基本的测试,完成的API文档在这里~~
1 2 3 4 5 6 7 8 9 10 11 12 |
#获得版本 curl -L http://127.0.0.1:4001/version etcd 0.4.6 #set操作,URL为http://127.0.0.1:4001/v2/keys curl -L http://127.0.0.1:4001/v2/keys/foo/bar -XPUT -d value="hi, etcd" {"action":"set","node":{"key":"/foo/bar","value":"hi, etcd","modifiedIndex":27,"createdIndex":27},"prevNode":{"key":"/foo/bar","value":"hello, etcd!","modifiedIndex":22,"createdIndex":22}} #get操作 curl -L http://127.0.0.1:4001/v2/keys/foo/bar {"action":"get","node":{"key":"/foo/bar","value":"hi, etcd","modifiedIndex":27,"createdIndex":27}} #rm操作 curl -L http://127.0.0.1:4001/v2/keys/foo/bar -XDELETE {"action":"delete","node":{"key":"/foo/bar","modifiedIndex":28,"createdIndex":27},"prevNode":{"key":"/foo/bar","value":"hi, etcd","modifiedIndex":27,"createdIndex":27}} |
建立集群
etcd的配置选项中,比较重要的有下面几项
-name
节点名称,默认为UUID
-data-dir
– 保存日志和快照的目录,默认为当前工作目录。
-addr
公布的ip地址。默认为127.0.0.1:4001
-bind-addr
用于客户端连接的监听地址,默认为公布IP地址。
-peers
集群成员逗号分割的列表,例如203.0.113.101:7001,203.0.113.102:7001
-peer-addr
集群服务通讯的公布的IP地址,默认为 127.0.0.1:7001.
-peer-bind-addr
集群服务通讯的监听地址,默认为peer-addr
也可以设置参数文件(默认为/etc/etcd/etcd.conf),其他的选项可以参考Etcd Configuration
下面在同一主机上建立一个三节点的etcd服务模拟集群。其etcd服务节点分别为etcd1,etcd2,etcd3,而datadir分别/data/etcd1, /data/etcd2, /data/etcd3
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
mkdir -p /data/etcd{1,2,3} #启动第一个节点 cd /data/etcd1 etcd -name etcd1 -data-dir . -peer-addr 127.0.0.1:7001 -addr 127.0.0.1:4001 #启动剩余的节点 cd /data/etcd2 etcd -name etcd2 -data-dir . -peer-addr 127.0.0.1:7002 -addr 127.0.0.1:4002 -peers 127.0.0.1:7001,127.0.0.1:7003 ...... [etcd] Dec 31 16:28:21.586 INFO | etcd2 starting in peer mode [etcd] Dec 31 16:28:21.586 INFO | etcd2: state changed from 'initialized' to 'follower'. [etcd] Dec 31 16:28:21.640 INFO | etcd2: peer added: 'etcd1' ...... cd /data/etcd3 etcd -name etcd3 -data-dir . -peer-addr 127.0.0.1:7003 -addr 127.0.0.1:4003 -peers 127.0.0.1:7001,127.0.0.1:7002 ...... [etcd] Dec 31 16:28:59.181 INFO | etcd3 starting in peer mode [etcd] Dec 31 16:28:59.181 INFO | etcd3: state changed from 'initialized' to 'follower'. [etcd] Dec 31 16:28:59.252 INFO | etcd3: peer added: 'etcd1' [etcd] Dec 31 16:28:59.294 INFO | etcd3: peer added: 'etcd2 ...... 查看集群信息 # 查看leader curl -L http://127.0.0.1:4001/v2/leader http://127.0.0.1:7001 # 查看peers curl -L http://127.0.0.1:4001/v2/machines http://127.0.0.1:4001, http://127.0.0.1:4002, http://127.0.0.1:4003 # 获得一致性get etcdctl set /foo/bar "Hi, etcd cluster" Hi, etcd cluster etcdctl get /foo/bar --consistent Hi, etcd cluster # 干掉etcd1(http://127.0.0.1:4001)服务进程后,检查leader。已经成功切换到etcd3 curl -L http://127.0.0.1:4002/v2/leader http://127.0.0.1:7003 |
^^
参考:
https://github.com/coreos/etcd
66666
赞
cnz***女座
用门夹不就行了。。。。难道说现在都用门夹脑袋了?才这么多脑残?
对了不知万戈兄是怎么写简历的~发出来让我们看看~
把2012改成2013就可以成功订阅了 感谢楼主
作者太有智慧了,大家也别光盯着这个题目了,这个网站还有另外一本书叫《我的秘密女上司》,内容跟这个是一模一样的,更新还比这个快~作者好坏哦~