资源管理

增加节点

curl -v "http://10.196.59.198:17010/raftNode/add?addr=10.196.59.197:17010&id=3"

增加新的master节点到raft复制组。

参数列表

参数类型描述
addrstringmaster的ip地址, 格式为ip:port
iduint64master的节点标识

删除节点

curl -v "http://10.196.59.198:17010/raftNode/remove?addr=10.196.59.197:17010&id=3"

从raft复制组中移除某个节点。

参数列表

参数类型描述
addrstringmaster的ip地址, 格式为ip:port
iduint64master的节点标识
在github上编辑