38How do you keep a RAG system's knowledge fresh (index updates, stale data, changing documents)?▼mediumMicrosoftGleanCohere1 replies◆ premiumA RAG system is only as current as its index, and stale or duplicated content silently degrades answers. The signal is an incremental pipeline with deletes, updates, and recency signals, not a one-time bulk load. Here is the answer.Open full answer →
68How do you do incremental indexing for a RAG system with constant document churn, without a nightly full rebuild?▼hardGleanDatabricksMicrosoft1 replies◆ premiumRe-embedding 10M documents nightly is wasteful when only 0.5% changed. The signal is upserting by stable id, handling deletes and tombstones in an ANN index, and compacting before fragmentation tanks recall and latency.Open full answer →
82Design a personalized news / feed ranking system.▼hardGoogleMetaApple1 replies◆ premiumA news feed is not a generic recommender. The clock is a first-class signal: a story that mattered this morning is noise by tonight. The interviewer wants recency decay, an engagement-versus-quality value model, and an answer for filter bubbles, not just retrieval plus ranking.Open full answer →
30Your online features are stale, and predictions suffer for it. How do you guarantee feature freshness?▼hardUberDoorDashMeta2 replies◆ premiumA fraud model fed a feature an hour behind is half-blind, but recomputing everything in real time burns money you don't need to spend. Freshness is a per-feature decision on a real cost curve. Here is how to manage it.Open full answer →