51Time to first token has tripled on your inference service. Nothing deployed. Walk me through the triage.▼hardNewNVIDIADatabricksMicrosoft2 replies◆ premiumQueue time, prefill and decode fail for different reasons and the aggregate hides which. Split the metric first and the candidate list drops from twenty to three.Open full answer →
11A vLLM pod serving an LLM OOMs at a request rate it handled fine yesterday, dropping in-flight requests. Walk me through it.▼hard★ EssentialNewDatabricksNVIDIAGoogle○ sign inCPU memory intuition fails on inference servers. The scarce resource is KV-cache, requests arrive with unseen context lengths, and the fix is queue-depth scaling plus admission control, not bigger pods.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 →
14You have eight 80GB GPUs and a 70B model. Tensor parallel across all eight, or two replicas of four? Defend the choice.▼expertNewNVIDIADatabricksMeta2 replies○ sign inBoth configurations fit the weights. Compare cache capacity, collective overhead and replica placement under the actual traffic shape; neither layout wins every workload.Open full answer →
15One customer's batch job is making your interactive chat slow. Fix it at the serving layer.▼hardNewDatabricksSalesforceStripe2 replies○ sign inBoth workloads are legitimate and they want opposite things from the same GPU. Combine tenant rate limits with fair admission and measured capacity reservations; separate fleets are an option when shared scheduling cannot meet the targets.Open full answer →
19Long prompts are making short requests slow on the same replica. What is happening, and how would you fix it?▼expertNewNVIDIADatabricksMicrosoft2 replies○ sign inPrefill and decode are two different workloads sharing one GPU. Their resource demands differ, and an unchunked long prefill can delay active decodes. Profile the actual model and batch shape before choosing a scheduling change.Open full answer →
21Forty customers each want a fine-tuned model. You have eight GPUs. How do you serve that?▼hardNewDatabricksSalesforceSnowflake2 replies◆ premiumCompatible LoRA adapters let tenants share resident base weights. Check adapter size, KV-cache demand and traffic before sizing the replica pool.Open full answer →
22Speculative decoding promises a big latency win. When does it not deliver, and what does it cost you?▼expertNewNVIDIADatabricksMicrosoft2 replies◆ premiumIt trades compute for latency, so it wins on an underloaded fleet and can lose on a saturated one. The acceptance rate decides everything, and the acceptance rate depends on traffic you do not control.Open full answer →
24Your product depends on a model API and the provider has a regional outage. What did you build beforehand?▼hardNewStripeCloudflareUber2 replies◆ premiumA model provider is a single dependency with a shared failure domain across every customer they have. Treating it like a database you cannot fail over from is how a product goes down for four hours.Open full answer →
25Define the SLIs and SLOs for a streaming LLM endpoint. Why is p99 latency the wrong headline metric?▼hardNewDatabricksNVIDIADatadog2 replies◆ premiumA request that streams for ninety seconds is not slow, it is long. Total latency mixes the part users wait for with the part they read, and an SLO built on it will page you for success.Open full answer →
50A customer asks what stops their prompts from reaching another tenant on your inference platform. What is your answer?▼expertNewSalesforceSnowflakeMicrosoft2 replies◆ premiumShared batching puts two tenants' data in one process on one device. That is defensible, and it is not what most customers assume they bought, so the answer has to be specific about which boundary exists where.Open full answer →