etcd/clientv3
Piotr Tabor de55bb6331 pkg: Rename imports after making 'pkg' a module
find -name '*.go' | xargs sed --follow-symlinks -i 's|go.etcd.io/etcd/v3/pkg/|go.etcd.io/etcd/pkg/v3/|g'
go fmt ./...
2020-10-13 00:09:27 +02:00
..
balancer pkg/mock: Update imports to point on new files locations. 2020-10-12 23:58:09 +02:00
clientv3util go.mod: use go.etcd.io/etcd/v3 versioning 2020-04-28 00:57:35 +00:00
concurrency pkg: Rename imports after making 'pkg' a module 2020-10-13 00:09:27 +02:00
credentials *: Update references to code moved to the api/ dir. 2020-10-06 11:56:16 +02:00
leasing *: Update references to code moved to the api/ dir. 2020-10-06 11:56:16 +02:00
mirror go.mod: use go.etcd.io/etcd/v3 versioning 2020-04-28 00:57:35 +00:00
namespace namespace: check IsWithFromKey if keyLen equal 0. (#12307) 2020-10-08 17:34:09 -07:00
naming tests/integration: Move of naming/snapshot clientv3 tests (and yaml reference) 2020-10-07 15:37:24 +02:00
ordering tests/integration: Move of naming/snapshot clientv3 tests (and yaml reference) 2020-10-07 15:37:24 +02:00
snapshot pkg: Rename imports after making 'pkg' a module 2020-10-13 00:09:27 +02:00
yaml pkg: Rename imports after making 'pkg' a module 2020-10-13 00:09:27 +02:00
README.md vendor: Get rid of ./vendor cleanup 2020-09-15 14:38:54 +02:00
auth.go *: Update references to code moved to the api/ dir. 2020-10-06 11:56:16 +02:00
client.go pkg: Rename imports after making 'pkg' a module 2020-10-13 00:09:27 +02:00
client_test.go pkg: Rename imports after making 'pkg' a module 2020-10-13 00:09:27 +02:00
cluster.go pkg: Rename imports after making 'pkg' a module 2020-10-13 00:09:27 +02:00
compact_op.go *: Update references to code moved to the api/ dir. 2020-10-06 11:56:16 +02:00
compact_op_test.go *: Update references to code moved to the api/ dir. 2020-10-06 11:56:16 +02:00
compare.go *: Update references to code moved to the api/ dir. 2020-10-06 11:56:16 +02:00
config.go clientv3: document "WithBlock" dial option 2019-08-04 23:52:17 -07:00
ctx.go *: Update references to code moved to the api/ dir. 2020-10-06 11:56:16 +02:00
ctx_test.go *: Update references to code moved to the api/ dir. 2020-10-06 11:56:16 +02:00
doc.go clientv3: deprecate "grpc.ErrClientConnClosing" 2019-08-05 13:27:16 -07:00
example_auth_test.go clientv3: Expose clientv3/examples close to the code. 2020-10-08 14:27:32 +02:00
example_cluster_test.go clientv3: Expose clientv3/examples close to the code. 2020-10-08 14:27:32 +02:00
example_kv_test.go clientv3: Expose clientv3/examples close to the code. 2020-10-08 14:27:32 +02:00
example_lease_test.go clientv3: Expose clientv3/examples close to the code. 2020-10-08 14:27:32 +02:00
example_maintenance_test.go clientv3: Expose clientv3/examples close to the code. 2020-10-08 14:27:32 +02:00
example_metrics_test.go clientv3: Expose clientv3/examples close to the code. 2020-10-08 14:27:32 +02:00
example_test.go clientv3: Expose clientv3/examples close to the code. 2020-10-08 14:27:32 +02:00
example_watch_test.go clientv3: Expose clientv3/examples close to the code. 2020-10-08 14:27:32 +02:00
kv.go *: Update references to code moved to the api/ dir. 2020-10-06 11:56:16 +02:00
lease.go *: Update references to code moved to the api/ dir. 2020-10-06 11:56:16 +02:00
logger.go pkg: Rename imports after making 'pkg' a module 2020-10-13 00:09:27 +02:00
main_test.go pkg: Rename imports after making 'pkg' a module 2020-10-13 00:09:27 +02:00
maintenance.go *: Update references to code moved to the api/ dir. 2020-10-06 11:56:16 +02:00
op.go namespace: check IsWithFromKey if keyLen equal 0. (#12307) 2020-10-08 17:34:09 -07:00
op_test.go *: Update references to code moved to the api/ dir. 2020-10-06 11:56:16 +02:00
options.go test: test update for Go 1.12.5 and related changes 2019-06-05 17:02:05 -04:00
retry.go *: Update references to code moved to the api/ dir. 2020-10-06 11:56:16 +02:00
retry_interceptor.go *: Update references to code moved to the api/ dir. 2020-10-06 11:56:16 +02:00
sort.go clientv3: update LICENSE header 2016-05-12 20:50:58 -07:00
txn.go *: Update references to code moved to the api/ dir. 2020-10-06 11:56:16 +02:00
txn_test.go pkg: Rename imports after making 'pkg' a module 2020-10-13 00:09:27 +02:00
utils.go clientV3: fix behavior of WithPrefix and WithFromKey functions 2019-02-27 09:23:01 -05:00
watch.go *: Update references to code moved to the api/ dir. 2020-10-06 11:56:16 +02:00
watch_test.go *: Update references to code moved to the api/ dir. 2020-10-06 11:56:16 +02: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 install released versions of clients using go modules.

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.