44Design the pipeline that retrains and redeploys a model nightly. What makes it different from a normal CD pipeline?▼hardNewDatabricksUberNetflix2 replies◆ premiumThe code did not change, the data did. That inverts what triggers the pipeline, what the tests assert, and what a rollback means.Open full answer →
39Design the platform that decides whether a model change is safe to ship, for twenty teams shipping weekly.▼expertNewDatabricksMicrosoftSalesforce2 replies◆ premiumTeams need comparable evaluations before they approve a model change. Design versioned test data, recorded runs and release thresholds that a pipeline can enforce.Open full answer →
01Device plugin versus Dynamic Resource Allocation for GPUs: why did Kubernetes need DRA?▼hardNewNVIDIADatabricksGoogle2 repliesunlockedThe question that separates people running GPU clusters from people running Kubernetes clusters that happen to have GPUs. The answer is that an integer count cannot express what a GPU workload needs.Open full answer →
10Design a GPU serving platform for several LLMs with autoscaling and a cost ceiling.▼hard★ EssentialNewNVIDIADatabricksUber2 repliesunlockedThe fastest-growing design round in infrastructure hiring. GPU economics break the assumptions CPU autoscaling is built on, and the answer has to start from that rather than from Kubernetes.Open full answer →
13How is rolling out a new model different from rolling out new code, and what does a model canary actually measure?▼expertNewMetaGoogleDatabricks○ sign inCode rollouts ask 'does it work'; model rollouts ask 'is it better', and the second question has no HTTP status code. Shadow traffic, offline eval gates and quality canaries replace the 500-rate dashboards you cannot use.Open full answer →
30Your distributed training run died six hours into an epoch on preemptible GPUs. What happens next, and how do you design for it?▼mediumNewNVIDIAMetaDatabricks◆ premiumA training job is an hours-long computation with no user watching. Whether an interruption costs four minutes or four days is decided entirely by checkpoint cadence and restart semantics designed before the run.Open full answer →
31A team wants to fine-tune a model every time their labelled data grows. Build them the pipeline.▼hardNewDatabricksSalesforceSnowflake2 replies◆ premiumThe training part is a job. Everything around it is the pipeline: data snapshots that are immutable, an evaluation gate with a threshold set in advance, and adapters versioned so a bad one is a routing change away from gone.Open full answer →
36Design the path a model takes from a training run to production traffic. What gates does it pass?▼hardNewDatabricksMicrosoftSalesforce2 replies◆ premiumA model is an artifact with a lineage, an evaluation record and an owner, or it is a file somebody copied to a bucket. The registry exists so that the second one cannot reach production.Open full answer →
37A model scores well offline and performs badly in production. What infrastructure causes would you check first?▼hardNewUberNetflixDatabricks2 replies◆ premiumBefore blaming the model, check whether it is being fed the same thing it was trained on. Most of the gap is a pipeline difference, and pipeline differences are a platform problem with a platform fix.Open full answer →