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!
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!
Copyright © 2021 Jogjafile Inc.
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.
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.