Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use roundRobin balancing even if only one hostname #1329

Merged
merged 4 commits into from
Feb 13, 2019

Commits on Feb 12, 2019

  1. Use roundRobin balancing even if only one hostname

    If you run jaeger-agent with `--reporter.grpc.host-port
    dns:///jaeger-collector-hostname:14250` (note the `dns:///` part!),
    the GRPC client resolves the given hostname to one or more IPs and can
    load balance among the backend addresses it finds.  It even looks up
    and obeys SRV records, if they exist.  This change makes jaeger-agent
    use round-robin load balancing in that situation, rather than the
    default of `pick_first`.  If there is only one backend, or the user
    doesn't explicitly put `dns:///` before the hostname, this will
    have no effect.
    
    Signed-off-by: Benjamin Staffin <benley@gmail.com>
    benley committed Feb 12, 2019
    Configuration menu
    Copy the full SHA
    d24cdcf View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f357565 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    84df094 View commit details
    Browse the repository at this point in the history

Commits on Feb 13, 2019

  1. Configuration menu
    Copy the full SHA
    e595c30 View commit details
    Browse the repository at this point in the history