go-kit / kit

A standard library for microservices.
https://gokit.io
MIT License
26.62k stars 2.43k forks source link

grpc load balancing demo #676

Closed kafrax closed 6 years ago

kafrax commented 6 years ago
var testService = etcdv3.Service{
    Key:   "/addsvc/sum",
    Value: "192.168.102.130:8083",
    TTL:   nil,
}

i use this to register a grpc endpoint to etcd,and use apigateway ask it successful in my project.i need a grpc load balancing demo.

peterbourgon commented 6 years ago

The apigateway example is not meant to be a runnable demo.

kafrax commented 6 years ago

i wanna achieve a grpc load balancing with go-kit,can you give some suggestion?