go get github.com/cherry-game/cherry/components/etcd@latest
import cherryETCD "github.com/cherry-game/cherry/components/etcd"
// 注册etcd组件到discovery
func main() {
cherryDiscovery.RegisterDiscovery(cherryETCD.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" : "cherry",
"ttl": 5,
"dial_timeout": 3,
"dial_keep_alive_time": 1,
"dial_keep_alive_timeout": 1,
"user": "",
"password": ""
}
}
}