multi tenancy
FDE interview questions tagged multi tenancy, across every topic.
6 questions · 0 unlocked for you
Concepts behind "multi tenancy"
The curriculum that explains the ideas these questions test.
Advanced
Multi-Tenancy and Data IsolationMulti-tenancy is serving many customers from shared infrastructure while guaranteeing no tenant can ever see another's data. The isolation strategies run a spectrum from row-level filtering to fully separate databases, trading cost against blast radius. The non-negotiable rule for AI systems: tenant scope is enforced below the model, in code that filters queries and scopes credentials, never by instructing the model in a prompt. A single prompt-injected document is enough to break prompt-level isolation.🛡️ AI Security, Privacy & Governance🔒 Premium
Advanced
Noisy Neighbors and KV Fair ShareOn a shared model server the contended resource is KV cache, and it is consumed in proportion to context length. A limiter that counts requests therefore measures the wrong thing: one hundred-thousand-token request holds the cache of fifty short ones, so equal request counts hand one tenant most of the machine.🖥️ ML Infrastructure & Serving🔒 Premium
