Documentation ¶
Index ¶
- Constants
- func AddEtcdMember(client *clientv3.Client, urls []string) (*clientv3.MemberAddResponse, error)
- func CheckClusterID(localClusterID types.ID, um types.URLsMap, tlsConfig *tls.Config) error
- func ListEtcdMembers(client *clientv3.Client) (*clientv3.MemberListResponse, error)
- func RemoveEtcdMember(client *clientv3.Client, id uint64) (*clientv3.MemberRemoveResponse, error)
Constants ¶
View Source
const ( // DefaultDialTimeout is the maximum amount of time a dial will wait for a // connection to setup. 30s is long enough for most of the network conditions. DefaultDialTimeout = 30 * time.Second // DefaultRequestTimeout 10s is long enough for most of etcd clusters. DefaultRequestTimeout = 10 * time.Second // DefaultSlowRequestTime 1s for the threshold for normal request, for those // longer then 1s, they are considered as slow requests. DefaultSlowRequestTime = 1 * time.Second )
Variables ¶
This section is empty.
Functions ¶
func AddEtcdMember ¶
AddEtcdMember adds an etcd member.
func CheckClusterID ¶
CheckClusterID checks Etcd's cluster ID, returns an error if mismatch. This function will never block even quorum is not satisfied.
func ListEtcdMembers ¶
func ListEtcdMembers(client *clientv3.Client) (*clientv3.MemberListResponse, error)
ListEtcdMembers returns a list of internal etcd members.
func RemoveEtcdMember ¶
RemoveEtcdMember removes a member by the given id.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.