-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* gRPC load balancing * Fix typo * Merge branch 'master' into 5132-gRPC-client-load-balancing * Add doc about load balancer * Update validator/client/multiple_endpoints_grpc_resolver.go * Merge branch 'master' into 5132-gRPC-client-load-balancing * gofmt * Merge branch 'master' into 5132-gRPC-client-load-balancing * Merge branch 'master' into 5132-gRPC-client-load-balancing
- Loading branch information
Showing
3 changed files
with
49 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
package client | ||
|
||
import ( | ||
"strings" | ||
|
||
"google.golang.org/grpc/resolver" | ||
) | ||
|
||
// Modification of a default grpc passthrough resolver (google.golang.org/grpc/resolver/passthrough) allowing to use multiple addresses | ||
// in grpc endpoint. Example: | ||
// conn, err := grpc.DialContext(ctx, "127.0.0.1:4000,127.0.0.1:4001", grpc.WithInsecure(), grpc.WithResolvers(&multipleEndpointsGrpcResolverBuilder{})) | ||
// It can be used with any grpc load balancer (pick_first, round_robin). Default is pick_first. | ||
// Round robin can be used by adding the following option: | ||
// grpc.WithDefaultServiceConfig("{\"loadBalancingConfig\":[{\"round_robin\":{}}]}") | ||
type multipleEndpointsGrpcResolverBuilder struct{} | ||
|
||
func (*multipleEndpointsGrpcResolverBuilder) Build(target resolver.Target, cc resolver.ClientConn, opts resolver.BuildOptions) (resolver.Resolver, error) { | ||
r := &multipleEndpointsGrpcResolver{ | ||
target: target, | ||
cc: cc, | ||
} | ||
r.start() | ||
return r, nil | ||
} | ||
|
||
func (*multipleEndpointsGrpcResolverBuilder) Scheme() string { | ||
return resolver.GetDefaultScheme() | ||
} | ||
|
||
type multipleEndpointsGrpcResolver struct { | ||
target resolver.Target | ||
cc resolver.ClientConn | ||
} | ||
|
||
func (r *multipleEndpointsGrpcResolver) start() { | ||
endpoints := strings.Split(r.target.Endpoint, ",") | ||
var addrs []resolver.Address | ||
for _, endpoint := range endpoints { | ||
addrs = append(addrs, resolver.Address{Addr: endpoint}) | ||
} | ||
r.cc.UpdateState(resolver.State{Addresses: addrs}) | ||
} | ||
|
||
func (*multipleEndpointsGrpcResolver) ResolveNow(o resolver.ResolveNowOptions) {} | ||
|
||
func (*multipleEndpointsGrpcResolver) Close() {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters