03What happens between typing a URL and the page rendering? Go as deep as you can.▼medium★ EssentialNewMetaGoogleCloudflare2 repliesunlockedThe oldest question in systems interviewing and still the best, because it is unbounded: the interviewer stops you when you run out of depth, and where you stop is the score.Open full answer →
10Walk me through a DNS lookup end to end. What is recursion actually doing, and who caches the answer?▼hard★ EssentialNewCloudflareAmazon & AWSPhonePeunlockedInterviewers use this to sort memorised trivia from people who have chased a slow lookup. Three roles, one bit, and the caching rules most candidates repeat incorrectly.Open full answer →
35Which DNS record types do you actually touch as an ops engineer, and where does each one bite?▼easyNewSwiggyAtlassianRazorpay◆ premiumA and AAAA are the easy part. The bites live at the zone apex, inside 255-byte TXT chunks, in CAA blocking your renewals, and in SRV records half the internet ignores.Open full answer →
12DNS failover with health checks is configured between two regions, yet users saw minutes of downtime. Why is it slower than it looks?▼mediumNewAmazon & AWSCloudflareSalesforce○ sign inDNS failover is a blunt instrument with three delays stacked on top of each other: detection, propagation and client caching. Knowing their sizes tells you when DNS is the right layer at all.Open full answer →
46Azure Blob Storage works from a VM but fails from the office after public access is disabled. Where do you look?▼mediumNewMicrosoftSAPJPMorgan Chase◆ premiumThe private endpoint can be healthy while an office resolver still returns the public address. Trace the lookup from the failing client before changing access rules.Open full answer →
13Lock down a namespace so pods can talk only to their own dependencies. Why does DNS break first, and how do you get it right?▼hardNewRed HatGoldman SachsDatabricks○ sign inDefault-deny egress breaks name resolution before it breaks anything else, and every connection times out confusingly. The practitioners are the ones who test with positive AND negative probes and know their CNI's fine print.Open full answer →
59A service in the EU cluster must call one in the US cluster. What are the real options for cross-cluster service discovery?▼mediumNewNetflixUberLinkedIn◆ premiumA ladder from health-checked global DNS through endpoint mirroring to mesh east-west gateways. The deciding axis is trust boundary and failure isolation, not any mesh's feature matrix.Open full answer →
06Requests inside the cluster fail with DNS errors, but only sometimes. Diagnose it.▼hardNewUberCloudflareShopify2 repliesunlockedIntermittent DNS is the most-reported and least-understood Kubernetes failure. There are three well-known causes and each leaves a different fingerprint.Open full answer →
43After a registrar transfer last week, some users resolve the site and others get NXDOMAIN or SERVFAIL. Where did delegation break?▼hardNewCloudflareAmazon & AWSGoldman Sachs◆ premiumMixed resolution after a transfer is not propagation voodoo. Compare the parent delegation, authoritative answers and validation results. NXDOMAIN and SERVFAIL are clues; neither names a unique cause.Open full answer →