25After scaling workers the app dies with too many open files. How do you raise the limit so it actually sticks?▼mediumNewPhonePeSwiggyInfosys◆ premiumEveryone knows ulimit -n. The interview question is which process inherits which value, why limits.conf did nothing for your service, and how you size the ceiling honestly.Open full answer →
33Walk me through nginx internals: what do the master and workers each do, and how does one worker hold thousands of connections?▼easyNewTCSAccentureGitLab◆ premiumThe answer that lands is about one epoll loop per core, not config snippets. Master versus worker duties, the arithmetic of worker_connections, and the limits people forget to raise.Open full answer →
37A launch failed because an account hit a service limit nobody tracked. How should quotas be run going forward?▼easyNewUberDatabricksDatadog◆ premiumQuotas are invisible until launch day. Treating them as tracked inventory with utilization alerts beats discovering them in a postmortem.Open full answer →
13It is release week and every Jenkins build queues behind another. Sort out the agent situation.▼mediumNewTCSAccentureInfosys○ sign inQueueing during release week is rarely bad luck. Diagnosis takes a minute once you know the three failure shapes, and the durable fix treats agents as cattle with labels and lifespans.Open full answer →
25Traffic grew thirty percent a quarter and our model said two years of headroom. We ran out in five months. What went wrong?▼hardNewNetflixLinkedInFlipkart◆ premiumWhere linear models break: compounding growth, step functions, peak days and saturation cliffs. Forecast per constrained resource, backtest, subtract lead time to get the real order-by date.Open full answer →
46A pod restarts every ten days, nobody reproduces the leak locally, and instant-use alerts stay green. How do you catch it?▼mediumNewDatadogLinkedInGoogle◆ premiumSlow leaks hide inside restart cycles and percentage thresholds. Plot weeks of absolute memory against deploys, prove it with profiler deltas, and alert on predicted time-to-limit instead.Open full answer →
06Design an authentication service for 100,000 QPS across three regions: 2KB payloads, 10ms processing, 16-core VMs. Do the math out loud.▼expert★ EssentialNewGoogleMetaAmazon & AWSunlockedThe Google-style NALSD round in miniature. The boxes are easy; what is being scored is whether the numbers fall out of Little's law before you draw them.Open full answer →
05How do you decide between savings plans, reserved instances, spot and on-demand for a mixed fleet?▼hardNewAmazon & AWSNetflixUberunlockedFour purchase instruments, one fleet, and a finance team asking why you did not commit to everything at maximum discount. The scoring rubric rewards the arithmetic of being wrong, not the discount table.Open full answer →
07Walk me through running a rightsizing programme across fifty teams, end to end.▼easyNewAccentureInfosysWalmart Global TechunlockedThe tool emits recommendations; the programme is everything around it. Interviewers use this question to see whether you can turn a dashboard into landed changes without breaking production or trust.Open full answer →
08You need 64 GPUs for the next year and the region is out of capacity. What is your procurement strategy?▼hardNewMicrosoftOracleGoogle2 repliesunlockedGPU capacity is not elastic the way CPU is. On-demand means whatever is left after the reservations, and in a tight region that is nothing, so the availability problem and the cost problem are the same problem.Open full answer →
12How should you adapt web-service autoscaling for an LLM inference service?▼hardNewDatabricksNVIDIAMeta○ sign inRequests-per-second is not the load unit, cold starts are minutes not seconds, and scale-in can kill paying users mid-sentence. Everything you know about HPA needs re-deriving here.Open full answer →
27Your GPU dashboard shows 95 percent utilisation and finance wants to know why you need more GPUs. What do you tell them?▼hardNewNVIDIADatabricksGoogle2 replies◆ premiumThe utilisation number everyone quotes means at least one kernel was resident, not that the hardware was doing useful work. A GPU at 95 percent can be doing five percent of what it is capable of.Open full answer →
44Build the cost model for serving your own open-weight model versus paying an API per token. Where is the break-even?▼hardNewDatabricksSnowflakeStripe2 replies◆ premiumPer-token pricing looks expensive until you compute what an idle GPU costs at 3am. Break-even depends on workload volume and duty cycle, measured throughput, and the engineering cost on both sides.Open full answer →