etcd/client
Gyuho Lee 1caaa9ed4a test: test update for Go 1.12.5 and related changes
Update to Go 1.12.5 testing. Remove deprecated unused and gosimple
pacakges, and mask staticcheck 1006. Also, fix unconvert errors related
to unnecessary type conversions and following staticcheck errors:
- remove redundant return statements
- use for range instead of for select
- use time.Since instead of time.Now().Sub
- omit comparison to bool constant
- replace T.Fatal and T.Fatalf in tests with T.Error and T.Fatalf respectively because the goroutine calls T.Fatal must be called in the same goroutine as the test
- fix error strings that should not be capitalized
- use sort.Strings(...) instead of sort.Sort(sort.StringSlice(...))
- use he status code of Canceled instead of grpc.ErrClientConnClosing which is deprecated
- use use status.Errorf instead of grpc.Errorf which is deprecated

Related #10528 #10438
2019-06-05 17:02:05 -04:00
..
integration *: revert module import paths 2019-05-28 15:39:35 -07:00
README.md client,clientv3: update client docs to "go.etcd.io" 2018-08-30 19:26:12 -04:00
auth_role.go *: replace 'golang.org/x/net/context' with 'context' 2017-09-07 13:39:42 -07:00
auth_user.go *: replace 'golang.org/x/net/context' with 'context' 2017-09-07 13:39:42 -07:00
cancelreq.go client: drop go1.4 tests 2016-03-18 18:44:56 -07:00
client.go test: test update for Go 1.12.5 and related changes 2019-06-05 17:02:05 -04:00
client_test.go test: test update for Go 1.12.5 and related changes 2019-06-05 17:02:05 -04:00
cluster_error.go client: improve error message for ClusterError 2016-06-22 13:13:12 -07:00
curl.go *: update LICENSE header 2016-05-12 20:51:48 -07:00
discover.go *: revert module import paths 2019-05-28 15:39:35 -07:00
doc.go *: revert module import paths 2019-05-28 15:39:35 -07:00
example_keys_test.go *: revert module import paths 2019-05-28 15:39:35 -07:00
fake_transport_test.go *: update LICENSE header 2016-05-12 20:51:48 -07:00
json.go client: Switch to case sensitive unmarshalling to be compatible with ugorji 2019-04-23 16:54:44 -04:00
keys.go test: test update for Go 1.12.5 and related changes 2019-06-05 17:02:05 -04:00
keys_bench_test.go client/keys_bench_test.go: Fix some misspells 2019-02-28 14:36:06 -05:00
keys_test.go client: Fix tests for latest golang 2019-04-22 08:14:10 -05:00
main_test.go *: revert module import paths 2019-05-28 15:39:35 -07:00
members.go *: revert module import paths 2019-05-28 15:39:35 -07:00
members_test.go *: revert module import paths 2019-05-28 15:39:35 -07:00
util.go client: utility functions for getting detail of v2 auth errors 2016-07-31 21:23:58 +09:00

README.md

etcd/client

etcd/client is the Go client library for etcd.

GoDoc

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

Install

go get go.etcd.io/etcd/client

Usage

package main

import (
	"log"
	"time"
	"context"

	"go.etcd.io/etcd/client"
)

func main() {
	cfg := client.Config{
		Endpoints:               []string{"http://127.0.0.1:2379"},
		Transport:               client.DefaultTransport,
		// set timeout per request to fail fast when the target endpoint is unavailable
		HeaderTimeoutPerRequest: time.Second,
	}
	c, err := client.New(cfg)
	if err != nil {
		log.Fatal(err)
	}
	kapi := client.NewKeysAPI(c)
	// set "/foo" key with "bar" value
	log.Print("Setting '/foo' key with 'bar' value")
	resp, err := kapi.Set(context.Background(), "/foo", "bar", nil)
	if err != nil {
		log.Fatal(err)
	} else {
		// print common key info
		log.Printf("Set is done. Metadata is %q\n", resp)
	}
	// get "/foo" key's value
	log.Print("Getting '/foo' key value")
	resp, err = kapi.Get(context.Background(), "/foo", nil)
	if err != nil {
		log.Fatal(err)
	} else {
		// print common key info
		log.Printf("Get is done. Metadata is %q\n", resp)
		// print value
		log.Printf("%q key has %q value\n", resp.Node.Key, resp.Node.Value)
	}
}

Error Handling

etcd client might return three types of errors.

  • context error

Each API call has its first parameter as context. A context can be canceled or have an attached deadline. If the context is canceled or reaches its deadline, the responding context error will be returned no matter what internal errors the API call has already encountered.

  • cluster error

Each API call tries to send request to the cluster endpoints one by one until it successfully gets a response. If a requests to an endpoint fails, due to exceeding per request timeout or connection issues, the error will be added into a list of errors. If all possible endpoints fail, a cluster error that includes all encountered errors will be returned.

  • response error

If the response gets from the cluster is invalid, a plain string error will be returned. For example, it might be a invalid JSON error.

Here is the example code to handle client errors:

cfg := client.Config{Endpoints: []string{"http://etcd1:2379","http://etcd2:2379","http://etcd3:2379"}}
c, err := client.New(cfg)
if err != nil {
	log.Fatal(err)
}

kapi := client.NewKeysAPI(c)
resp, err := kapi.Set(ctx, "test", "bar", nil)
if err != nil {
	if err == context.Canceled {
		// ctx is canceled by another routine
	} else if err == context.DeadlineExceeded {
		// ctx is attached with a deadline and it exceeded
	} else if cerr, ok := err.(*client.ClusterError); ok {
		// process (cerr.Errors)
	} else {
		// bad cluster endpoints, which are not etcd servers
	}
}

Caveat

  1. etcd/client prefers to use the same endpoint as long as the endpoint continues to work well. This saves socket resources, and improves efficiency for both client and server side. This preference doesn't remove consistency from the data consumed by the client because data replicated to each etcd member has already passed through the consensus process.

  2. etcd/client does round-robin rotation on other available endpoints if the preferred endpoint isn't functioning properly. For example, if the member that etcd/client connects to is hard killed, etcd/client will fail on the first attempt with the killed member, and succeed on the second attempt with another member. If it fails to talk to all available endpoints, it will return all errors happened.

  3. Default etcd/client cannot handle the case that the remote server is SIGSTOPed now. TCP keepalive mechanism doesn't help in this scenario because operating system may still send TCP keep-alive packets. Over time we'd like to improve this functionality, but solving this issue isn't high priority because a real-life case in which a server is stopped, but the connection is kept alive, hasn't been brought to our attention.

  4. etcd/client cannot detect whether a member is healthy with watches and non-quorum read requests. If the member is isolated from the cluster, etcd/client may retrieve outdated data. Instead, users can either issue quorum read requests or monitor the /health endpoint for member health information.