Is there a way to specify different DNS lookup for each request with okhttp?

484 Views Asked by At

I want to distribute requests by some parameters. For example when using http DNS.

Is there a way to specify different DNS resolver for each request? Thanks!

1

There are 1 best solutions below

1
On

Because of connection reuse there is no guarantee that DNS will be used before starting your request. To strictly achieve what you are asking for you should fork a new client with a distinct DNS implementation for each cluster of requests.

  val client1 = client.newBuilder().dns(externalDns).build()
  val client2 = client.newBuilder().dns(intranetDns).build()

But if the split is by hostname, then you could just override the common DNS and make it do whatever you need.

You should confirm the behaviour you want is happening with an event listener.

Docs on connections and events logging.

A great post on debugging into connection reuse.