etcd/clientv3
mengjin 41f7142ff9 doc: fix document example error 2019-03-21 08:21:03 -04:00
..
balancer Merge pull request #10531 from JoeWrightss/patch-3 2019-03-12 12:09:09 -07:00
clientv3util clientv3: update Go import paths to "go.etcd.io" 2018-08-28 17:47:55 -07:00
concurrency clientv3/concurrency: fix govet errors 2018-12-05 18:28:13 -08:00
integration clientv3: Add TestMemberAddWithExistingURLs 2019-03-18 12:48:44 -07:00
leasing clientv3: update Go import paths to "go.etcd.io" 2018-08-28 17:47:55 -07:00
mirror clientv3: update Go import paths to "go.etcd.io" 2018-08-28 17:47:55 -07:00
namespace clientv3: update Go import paths to "go.etcd.io" 2018-08-28 17:47:55 -07:00
naming doc: fix document example error 2019-03-21 08:21:03 -04:00
ordering clientv3: update Go import paths to "go.etcd.io" 2018-08-28 17:47:55 -07:00
snapshot clientv3: add test for snapshot status 2018-10-03 18:17:19 -07:00
yaml clientv3: update Go import paths to "go.etcd.io" 2018-08-28 17:47:55 -07:00
README.md doc: Replacing 'HTTP' by 'HTTPS' for securing links 2019-02-27 10:15:22 +07:00
auth.go clientv3: update Go import paths to "go.etcd.io" 2018-08-28 17:47:55 -07:00
client.go clientv3: clean up unused code. 2019-03-18 10:34:41 +08:00
client_test.go clientv3: update Go import paths to "go.etcd.io" 2018-08-28 17:47:55 -07:00
cluster.go clientv3: update Go import paths to "go.etcd.io" 2018-08-28 17:47:55 -07:00
compact_op.go clientv3: update Go import paths to "go.etcd.io" 2018-08-28 17:47:55 -07:00
compact_op_test.go clientv3: update Go import paths to "go.etcd.io" 2018-08-28 17:47:55 -07:00
compare.go clientv3: update Go import paths to "go.etcd.io" 2018-08-28 17:47:55 -07:00
config.go clientv3: use default info level log configuration 2019-02-21 10:57:38 -08:00
doc.go *: fix github links 2018-11-10 11:14:18 +09:00
example_auth_test.go clientv3: update Go import paths to "go.etcd.io" 2018-08-28 17:47:55 -07:00
example_cluster_test.go clientv3: update Go import paths to "go.etcd.io" 2018-08-28 17:47:55 -07:00
example_kv_test.go clientv3: update Go import paths to "go.etcd.io" 2018-08-28 17:47:55 -07:00
example_lease_test.go clientv3: update Go import paths to "go.etcd.io" 2018-08-28 17:47:55 -07:00
example_maintenence_test.go clientv3: update Go import paths to "go.etcd.io" 2018-08-28 17:47:55 -07:00
example_metrics_test.go clientv3: update Go import paths to "go.etcd.io" 2018-08-28 17:47:55 -07:00
example_test.go clientv3: update Go import paths to "go.etcd.io" 2018-08-28 17:47:55 -07:00
example_watch_test.go clientv3: update Go import paths to "go.etcd.io" 2018-08-28 17:47:55 -07:00
kv.go clientv3: update Go import paths to "go.etcd.io" 2018-08-28 17:47:55 -07:00
lease.go *: fix github links 2018-11-10 11:14:18 +09:00
logger.go clientv3: update Go import paths to "go.etcd.io" 2018-08-28 17:47:55 -07:00
main_test.go clientv3: update Go import paths to "go.etcd.io" 2018-08-28 17:47:55 -07:00
maintenance.go clientv3: update Go import paths to "go.etcd.io" 2018-08-28 17:47:55 -07:00
op.go clientV3: fix behavior of WithPrefix and WithFromKey functions 2019-02-27 09:23:01 -05:00
op_test.go clientv3: update Go import paths to "go.etcd.io" 2018-08-28 17:47:55 -07:00
options.go clientv3: clean up code format 2018-07-21 16:03:12 -07:00
ready_wait.go clientv3: separate readyWait for ConnectNotify 2017-10-19 13:07:22 -07:00
retry.go clientv3: update Go import paths to "go.etcd.io" 2018-08-28 17:47:55 -07:00
retry_interceptor.go clientv3: use default info level log configuration 2019-02-21 10:57:38 -08:00
sort.go clientv3: update LICENSE header 2016-05-12 20:50:58 -07:00
txn.go clientv3: update Go import paths to "go.etcd.io" 2018-08-28 17:47:55 -07:00
txn_test.go clientv3: update Go import paths to "go.etcd.io" 2018-08-28 17:47:55 -07:00
utils.go clientV3: fix behavior of WithPrefix and WithFromKey functions 2019-02-27 09:23:01 -05:00
watch.go clientV3watch: Watch Close should close successfully 2019-02-28 20:43:20 -05:00
watch_test.go clientv3: update Go import paths to "go.etcd.io" 2018-08-28 17:47:55 -07:00

README.md

etcd/clientv3

Docs Godoc

etcd/clientv3 is the official Go etcd client for v3.

See https://etcd.readthedocs.io/en/latest for latest client architecture.

Install

go get go.etcd.io/etcd/clientv3

Get started

Create client using clientv3.New:

cli, err := clientv3.New(clientv3.Config{
	Endpoints:   []string{"localhost:2379", "localhost:22379", "localhost:32379"},
	DialTimeout: 5 * time.Second,
})
if err != nil {
	// handle error!
}
defer cli.Close()

etcd v3 uses gRPC for remote procedure calls. And clientv3 uses grpc-go to connect to etcd. Make sure to close the client after using it. If the client is not closed, the connection will have leaky goroutines. To specify client request timeout, pass context.WithTimeout to APIs:

ctx, cancel := context.WithTimeout(context.Background(), timeout)
resp, err := cli.Put(ctx, "sample_key", "sample_value")
cancel()
if err != nil {
    // handle error!
}
// use the response

For full compatibility, it is recommended to vendor builds using etcd's vendored packages, using tools like golang/dep, as in vendor directories.

Error Handling

etcd client returns 2 types of errors:

  1. context error: canceled or deadline exceeded.
  2. gRPC error: see api/v3rpc/rpctypes.

Here is the example code to handle client errors:

resp, err := cli.Put(ctx, "", "")
if err != nil {
	switch err {
	case context.Canceled:
		log.Fatalf("ctx is canceled by another routine: %v", err)
	case context.DeadlineExceeded:
		log.Fatalf("ctx is attached with a deadline is exceeded: %v", err)
	case rpctypes.ErrEmptyKey:
		log.Fatalf("client-side error: %v", err)
	default:
		log.Fatalf("bad cluster endpoints, which are not etcd servers: %v", err)
	}
}

Metrics

The etcd client optionally exposes RPC metrics through go-grpc-prometheus. See the examples.

Namespacing

The namespace package provides clientv3 interface wrappers to transparently isolate client requests to a user-defined prefix.

Request size limit

Client request size limit is configurable via clientv3.Config.MaxCallSendMsgSize and MaxCallRecvMsgSize in bytes. If none given, client request send limit defaults to 2 MiB including gRPC overhead bytes. And receive limit defaults to math.MaxInt32.

Examples

More code examples can be found at GoDoc.