etcd/clientv3
Vern Burton 071e70cdc4
*: add a new API and command for checking auth status (#11536)
This changes have started at etcdctl under auth.go, and make changes to stub out everything down into the internal raft.  Made changes to the .proto files and regenerated them so that the local version would build successfully.
2020-02-05 19:27:42 -08:00
..
balancer clientV3: simplify grpc dialer usage. Remove workaround #11184 after bumping grpc to 1.26.0. 2020-01-30 14:51:24 -08:00
clientv3util *: revert module import paths 2019-05-28 15:39:35 -07:00
concurrency concurrency: make lock more reliable 2019-12-02 10:54:30 -08:00
credentials clientV3: simplify grpc dialer usage. Remove workaround #11184 after bumping grpc to 1.26.0. 2020-01-30 14:51:24 -08:00
integration in multiple packages: fixed goroutine leak bugs in tests (#11569) 2020-01-30 10:45:59 -08:00
leasing test: test update for Go 1.12.5 and related changes 2019-06-05 17:02:05 -04:00
mirror test: test update for Go 1.12.5 and related changes 2019-06-05 17:02:05 -04:00
namespace *: revert module import paths 2019-05-28 15:39:35 -07:00
naming *: revert module import paths 2019-05-28 15:39:35 -07:00
ordering *: revert module import paths 2019-05-28 15:39:35 -07:00
snapshot *: set zap as default logger, remove capnslog 2020-02-04 04:57:49 -08:00
yaml *: revert module import paths 2019-05-28 15:39:35 -07:00
README.md *: move to etcd.io for docs 2019-05-20 14:32:08 -07:00
auth.go *: add a new API and command for checking auth status (#11536) 2020-02-05 19:27:42 -08:00
client.go clientV3: simplify grpc dialer usage. Remove workaround #11184 after bumping grpc to 1.26.0. 2020-01-30 14:51:24 -08:00
client_test.go in multiple packages: fixed goroutine leak bugs in tests (cont.d) (#11570) 2020-01-30 10:55:59 -08:00
cluster.go *: revert module import paths 2019-05-28 15:39:35 -07:00
compact_op.go *: revert module import paths 2019-05-28 15:39:35 -07:00
compact_op_test.go *: revert module import paths 2019-05-28 15:39:35 -07:00
compare.go *: revert module import paths 2019-05-28 15:39:35 -07:00
config.go clientv3: document "WithBlock" dial option 2019-08-04 23:52:17 -07:00
doc.go clientv3: deprecate "grpc.ErrClientConnClosing" 2019-08-05 13:27:16 -07:00
example_auth_test.go *: revert module import paths 2019-05-28 15:39:35 -07:00
example_cluster_test.go *: revert module import paths 2019-05-28 15:39:35 -07:00
example_kv_test.go clientv3: remove the redundant CancelFunc invocation 2019-09-18 23:06:49 +08:00
example_lease_test.go *: revert module import paths 2019-05-28 15:39:35 -07:00
example_maintenance_test.go *: revert module import paths 2019-05-28 15:39:35 -07:00
example_metrics_test.go *: revert module import paths 2019-05-28 15:39:35 -07:00
example_test.go *: revert module import paths 2019-05-28 15:39:35 -07:00
example_watch_test.go *: revert module import paths 2019-05-28 15:39:35 -07:00
kv.go *: revert module import paths 2019-05-28 15:39:35 -07:00
lease.go *: revert module import paths 2019-05-28 15:39:35 -07:00
logger.go *: revert module import paths 2019-05-28 15:39:35 -07:00
main_test.go *: revert module import paths 2019-05-28 15:39:35 -07:00
maintenance.go *: revert module import paths 2019-05-28 15:39:35 -07:00
op.go test: test update for Go 1.12.5 and related changes 2019-06-05 17:02:05 -04:00
op_test.go *: revert module import paths 2019-05-28 15:39:35 -07:00
options.go test: test update for Go 1.12.5 and related changes 2019-06-05 17:02:05 -04:00
retry.go *: add a new API and command for checking auth status (#11536) 2020-02-05 19:27:42 -08:00
retry_interceptor.go clientv3: fix retry/streamer error message 2019-10-30 21:29:44 -07:00
sort.go clientv3: update LICENSE header 2016-05-12 20:50:58 -07:00
txn.go *: revert module import paths 2019-05-28 15:39:35 -07:00
txn_test.go in multiple packages: fixed goroutine leak bugs in tests (cont.d) (#11570) 2020-01-30 10:55:59 -08:00
utils.go clientV3: fix behavior of WithPrefix and WithFromKey functions 2019-02-27 09:23:01 -05:00
watch.go Documentation: specify starting revision (#11559) 2020-01-27 10:18:27 -08:00
watch_test.go *: revert module import paths 2019-05-28 15:39:35 -07:00

README.md

etcd/clientv3

Docs Godoc

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

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.