Hacker News new | ask | show | jobs
by toast0 1233 days ago
Generally, recursive resolvers will retry queries multiple times and use all the NS records as needed.

You shouldn't have a broken NS record if you can avoid it, and it may add a little bit of delay, but things will still work.

Some recursive resolvers also keep statistics about authoritative servers, and when a domain had multiple NS records, the recursive resolver will prefer the option that has had the best response time in the recent past. That helps hide broken servers.

1 comments

> Generally, recursive resolvers will retry queries multiple times and use all the NS records as needed.

IIRC some recursive resolvers ask all of them simultaneously and then just pass the first request received.