Feature rich and easy-to-use resolver which return endpoints for service from the Hashicorp Consul and watch for the changes.
This library is production ready and will always save backward-compatibility
For using resolving endpoints from your Hashicorp Consul just import this library with import _ /github.com/mbobakov/grpc-consul-resolver
and pass valid connection string to the grpc.Dial
.
For full example see this section
consul://[user:password@]127.0.0.127:8555/my-service?[healthy=]&[wait=]&[near=]&[insecure=]&[limit=]&[tag=]&[token=]
Parameters:
Name | Format | Description |
---|---|---|
tag | string | Select endpoints only with this tag |
healthy | true/false | Return only endpoints which pass all health-checks. Default: false |
wait | as in time.ParseDuration | Wait time for watch changes. Due this time period endpoints will be force refreshed. Default: inherits agent property |
insecure | true/false | Allow insecure communication with Consul. Default: true |
near | string | Sort endpoints by response duration. Can be efficient combine with limit parameter default: "_agent" |
limit | int | Limit number of endpoints for the service. Default: no limit |
timeout | as in time.ParseDuration | Http-client timeout. Default: 60s |
token | string | Consul token |
package main
import (
"time"
"log"
_ "github.com/mbobakov/grpc-consul-resolver" // It's important
"google.golang.org/grpc"
)
func main() {
conn, err := grpc.Dial(
"consul://127.0.0.1:8500/whoami?wait=14s&tag=manual",
grpc.WithInsecure(),
grpc.WithBalancerName("round_robin"),
)
if err != nil {
log.Fatal(err)
}
defer conn.Close()
...
}
MIT-LICENSE. See LICENSE or the LICENSE file provided in the repository for details.