net/http: Client round-robin across persistent connections #34511
Labels
FeatureRequest
Issues asking for a new feature that does not need a proposal.
NeedsInvestigation
Someone must examine and confirm this is a valid issue and not a duplicate of an existing one.
Milestone
When connecting directly to a service spread across multiple hosts with DNS "load-balancing" it would be ideal if
http.Client
could round-robin requests over persistent connections to the multiple hosts listed in the A record.Right now, if you want to ensure that load is balanced the only practical option is to disable HTTP keepalives.
One way this could be done is to have idle connection pools for each different A record, and do a DNS resolution for every request to decide which pool to use for that request.
This round-robin mode should likely be opt-in (or opt-out). When enabled, given a DNS record like the following:
http.Client
would send roughly half the requests to .1 and half to .2, even when using persistent connections, and even if the client only ever sends requests serially.Until this is fixed, if someone else also needs this you can take a look at https://github.com/CAFxX/balancer.
The text was updated successfully, but these errors were encountered: