etcd组件
Install
Prerequisites
Using go get
go get github.com/mhaya/components/etcd@latest
Quick Start
import mhayaETCD "github.com/mhaya/components/etcd"
// 注册etcd组件到discovery
func main() {
mhayaDiscovery.RegisterDiscovery(mhayaETCD.New())
}
// 配置profile文件
// 设置"cluster"->"discovery"->"mode"为"etcd"模式
// 设置“cluster”->"etcd"节点相关的参数
{
"cluster": {
"discovery": {
"mode": "etcd",
},
"nats": {
},
"etcd": {
"end_points": "dev.com:2379",
"@end_points": "dev.com:2379,dev1.com:2379",
"prefix" : "mhaya",
"ttl": 5,
"dial_timeout": 3,
"dial_keep_alive_time": 1,
"dial_keep_alive_timeout": 1,
"user": "",
"password": ""
}
}
}
example