-
Notifications
You must be signed in to change notification settings - Fork 16
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
Implement a DNS fallback cache to avoid failures in DNS outages #2176
Conversation
Generate changelog in
|
if (maybeFallback != null) { | ||
lookupFallback.mark(); | ||
log.info( | ||
"DNS resolution failed for host '{}', however fallback addresses are present in the cache", | ||
UnsafeArg.of("hostname", hostname)); | ||
return maybeFallback; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ideally we'd pass through service name info to this point, to understand where we're seeing these failures, however that would take some substantial refactoring
👍 |
Released 3.116.0 |
==COMMIT_MSG==
Implement a DNS fallback cache to avoid failures in DNS outages
==COMMIT_MSG==