You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Implement/change default DNS resolver behind a new behavior version for the default HTTP client.
We've had a number of issues around scaling and DNS. The default implementation in hyper-util uses blocking GAI (get address info) call on every request, relying on the OS for caching.
We would want a new resolver that:
Handles caching in-memory by default
first class async support
minimal footprint
Automatic rotation
A way to report connection errors back to resolver to de-prioritize or temporarily remove records from being yielded by the resolver
Implement/change default DNS resolver behind a new behavior version for the default HTTP client.
We've had a number of issues around scaling and DNS. The default implementation in
hyper-util
uses blocking GAI (get address info) call on every request, relying on the OS for caching.We would want a new resolver that:
See also:
V1577493841
The text was updated successfully, but these errors were encountered: