59The agent works in the pilot and falls apart somewhere between ten and fifty concurrent runs. Diagnose it before you add capacity.▼hardNewOpenAIAnthropicDatabricks4 replies◆ premiumEveryone sizes the pool on average run length, and average is the one statistic an agent fleet does not have. Simulated, the p99 sat at 160 seconds whether the system was half loaded or nearly saturated, which means capacity was never the problem.Open full answer →
06Estimate the capacity and cost of an app with 50k DAU making 10 LLM calls each. What do you provision for?▼medium★ EssentialOpenAIAnthropicMicrosoft2 repliesunlockedA Fermi estimate with a paycheck attached. The interviewers' favorite filter: candidates who jump to a dollar figure miss the two numbers that actually break deployments, peak QPS and tokens-per-minute limits.Open full answer →
38Hit a hard p99 SLA on an LLM product without blowing a fixed monthly spend ceiling. Model it.▼hardOpenAIAnthropicDatabricks1 replies◆ premiumLatency, cost, and quality are one budget with three claims on it. The strong answer treats the p99 SLA and the spend ceiling as a joint constraint, finds where they fight (batching), and names the lever it pulls when traffic exceeds what the ceiling can buy at SLA.Open full answer →
6040 customers, 4 cells, one of them hot and one customer locked to the EU. How do you decide where a new tenant goes?▼hardDatabricksSnowflakeGlean◆ premiumModulo hashing reshuffles everyone the day you add a cell. Consistent hashing fixes that and then loses to the two constraints that actually decide placement in an enterprise deployment: jurisdiction and who must not share a blast radius with whom.Open full answer →
61The customer signs a hardware order on Friday and asks how many GPUs. You have no access to their environment. What number do you give?▼hardNVIDIADatabricksScale AI◆ premiumA back-of-the-envelope round where the envelope has a purchase order attached. The arithmetic is the easy half. The scoring is in which assumptions you write down, which way you round, and what you say about the number being wrong.Open full answer →
25How do you choose the tensor-parallel degree when serving a 70B model?▼hard★ EssentialTogether AICoreWeaveNVIDIA1 replies◆ premiumTP=2, 4, or 8, the answer is a memory budget, a latency target, and one rule: smallest TP that fits, scale with replicas. The worked arithmetic that turns this from vibes into a defensible call.Open full answer →
28How many GPUs do you need to serve 1,000 requests/sec, walk me through the capacity math.▼hard★ EssentialOpenAICoreWeaveTogether AI1 replies◆ premiumThe back-of-envelope chain every inference-platform round expects: traffic → tokens/sec → per-GPU throughput from bandwidth math → fleet size → dollars. With the headroom factors candidates forget.Open full answer →
30Design the infrastructure to serve a ChatGPT-scale assistant to hundreds of millions of weekly users.▼hardOpenAIAnthropicGoogle1 replies◆ premiumThe OpenAI capstone design. What separates passing answers: token-based capacity math, KV/prefix-aware routing instead of round-robin, and a degradation ladder for the day demand doubles overnight.Open full answer →
33Plan a year of GPU fleet capacity and cost for a growing inference business. Buy, reserve, or burst?▼hardCoreWeaveOpenAITogether AI1 replies◆ premiumThe CFO-facing infra question: a demand forecast with a fat tail, GPUs that take months to land, and three cost structures that win in different regimes. The layered commitment model that keeps you from paying for peak all year.Open full answer →
46Capacity-plan 10B 768-dim embeddings: HNSW vs IVF-PQ storage, index, and RAM for sub-100ms.▼hardPineconeGleanDatabricks1 replies◆ premium10 billion vectors is where raw float storage (30TB) stops being an option. The answer does the HNSW vs IVF-PQ RAM math cold and shows why PQ is the only thing that fits in memory.Open full answer →