etcdcli

package
v1.0.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 8, 2024 License: MIT Imports: 7 Imported by: 0

README

etcdcli

Connect to the etcd service client.

Example of use

    import "gitee.com/yzsunjianguo/common_pkg/etcdcli"

    endpoints := []string{"192.168.3.37:2379"}
    // Way 1: setting parameters
    cli, err := etcdcli.Init(
        endpoints,
        etcdcli.WithConnectTimeout(time.Second*2),
        // etcdcli.WithAutoSyncInterval(0),
        // etcdcli.WithLog(zap.NewNop()),
        // etcdcli.WithAuth("", ""),
    )

    // Way 2: Setting up clientv3.Config
    cli, err = etcdcli.Init(nil, etcdcli.WithConfig(&clientv3.Config{
        Endpoints:   endpoints,
        DialTimeout: time.Second * 2,
        //Username:    "",
        //Password:    "",
    }))

Documentation

Overview

Package etcdcli is use for connecting to the etcd service

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func Init

func Init(endpoints []string, opts ...Option) (*clientv3.Client, error)

Init connecting to the etcd service Note: If the WithConfig(*clientv3.Config) parameter is set, the endpoints parameter is ignored!

Types

type Option

type Option func(*options)

Option set the etcd client options.

func WithAuth

func WithAuth(username string, password string) Option

WithAuth set authentication

func WithAutoSyncInterval

func WithAutoSyncInterval(duration time.Duration) Option

WithAutoSyncInterval set auto sync interval value

func WithConfig

func WithConfig(c *clientv3.Config) Option

WithConfig set etcd client config

func WithDialTimeout

func WithDialTimeout(duration time.Duration) Option

WithDialTimeout set dial timeout

func WithLog

func WithLog(l *zap.Logger) Option

WithLog set logger

func WithSecure

func WithSecure(serverNameOverride string, certFile string) Option

WithSecure set tls

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL