The single biggest misconception walking into a system design interview is that there's a "correct" architecture waiting to be discovered, and the interviewer is silently checking your diagram against it. There isn't. Real engineering organizations building the same product — a URL shortener, a chat app, a ride-sharing dispatch system — regularly ship meaningfully different architectures, and most of those differences are defensible given the constraints each team was actually working under. What the interview is really measuring is whether you can work through ambiguity the way you'd have to on the job: gather the missing requirements instead of guessing at them, put real numbers behind your decisions instead of hand-waving "at scale," and explain why you chose one trade-off over another instead of presenting a diagram as if it fell from the sky.
Every system design answer, regardless of the specific problem, benefits from the same shape:
An interviewer who has run this same interview fifty times isn't surprised by any particular architecture you might land on — leader-follower replication, a cache in front of a database, a queue between two services, these are all things they've seen a hundred times. What they haven't necessarily seen is how you got there. Did you ask what "handle a lot of users" actually means in requests per second before designing for it? Did a number you calculated in step 2 actually show up anywhere in your step-3 design, or did you estimate 50,000 requests per second and then draw a single, unreplicated database with no comment? Did you notice out loud that your own design has a single point of failure, or did the interviewer have to drag it out of you with a pointed question?
That's also why "correct" is the wrong frame entirely. Two candidates can both pass the same interview with different designs, provided both designs are internally consistent with the requirements they gathered and both candidates can defend the trade-offs they made. And two candidates can both fail with the same final diagram, if one arrived at it by reciting a memorized template and the other arrived at it by reasoning through the actual constraints of the problem — because the follow-up questions will expose the difference immediately.
Common mistake: Treating the deep-dive component as "the part I studied for" and steering every question toward it regardless of what's actually being asked. Interviewers notice a rehearsed answer bolted onto an unrelated prompt, and it reads as an inability to adapt — which is exactly the skill the interview is trying to measure.