Automatic merge from submit-queue. If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>. Version bump to etcd v3.2.13, grpc v1.7.5 Reapply https://github.com/kubernetes/kubernetes/pull/57160 but with etcd 3.2.13, which includes https://github.com/coreos/etcd/pull/9047 to fix https://github.com/kubernetes/kubernetes/issues/51099. We need to scalability test this PR before merging it since the previous attempt to version bump to grpc v1.7+ resulted in a scalability test failure after the PR was merged to master, and we don't want to repeat that. No, no we don't. Thanks @gyuho for fixing the etcd grpc issue and releasing etcd-3.2.13 on short notice. **Release note**: ```release-note Upgrade to etcd client 3.2.13 and grpc 1.7.5 to improve HA etcd cluster stability. ``` Kubernetes-commit: 531b97ba93e46cde4b1fcd3f170224dbecbe2c1d |
||
|---|---|---|
| .. | ||
| balancer | ||
| codes | ||
| connectivity | ||
| credentials | ||
| grpclb/grpc_lb_v1/messages | ||
| grpclog | ||
| health/grpc_health_v1 | ||
| internal | ||
| keepalive | ||
| metadata | ||
| naming | ||
| peer | ||
| resolver | ||
| stats | ||
| status | ||
| tap | ||
| transport | ||
| .please-update | ||
| .travis.yml | ||
| AUTHORS | ||
| CONTRIBUTING.md | ||
| LICENSE | ||
| Makefile | ||
| README.md | ||
| backoff.go | ||
| balancer.go | ||
| balancer_conn_wrappers.go | ||
| balancer_v1_wrapper.go | ||
| call.go | ||
| clientconn.go | ||
| codec.go | ||
| codegen.sh | ||
| doc.go | ||
| grpclb.go | ||
| interceptor.go | ||
| picker_wrapper.go | ||
| pickfirst.go | ||
| proxy.go | ||
| resolver_conn_wrapper.go | ||
| rpc_util.go | ||
| server.go | ||
| stream.go | ||
| trace.go | ||
| vet.sh | ||
README.md
gRPC-Go
The Go implementation of gRPC: A high performance, open source, general RPC framework that puts mobile and HTTP/2 first. For more information see the gRPC Quick Start: Go guide.
Installation
To install this package, you need to install Go and setup your Go workspace on your computer. The simplest way to install the library is to run:
$ go get -u google.golang.org/grpc
Prerequisites
This requires Go 1.7 or later.
Constraints
The grpc package should only depend on standard Go packages and a small number of exceptions. If your contribution introduces new dependencies which are NOT in the list, you need a discussion with gRPC-Go authors and consultants.
Documentation
See API documentation for package and API descriptions and find examples in the examples directory.
Performance
See the current benchmarks for some of the languages supported in this dashboard.
Status
General Availability Google Cloud Platform Launch Stages.
FAQ
Compiling error, undefined: grpc.SupportPackageIsVersion
Please update proto package, gRPC package and rebuild the proto files:
go get -u github.com/golang/protobuf/{proto,protoc-gen-go}go get -u google.golang.org/grpcprotoc --go_out=plugins=grpc:. *.proto