LinkedIn · Primly Community

LinkedIn senior / L5 system design interview, what to expect and how they evaluate

mobile_mara · 4 replies

Went through the LinkedIn L5 (Senior SWE) loop earlier this year and the system design round is where I felt the most pressure. Putting down everything I remember.

They gave me a prompt right at the start, no small talk: "Design LinkedIn's feed ranking system." 45 minutes. One interviewer. They shared a virtual whiteboard.

What they actually cared about: Clarifying the problem before jumping in. I spent the first 4-5 minutes asking questions (DAU scale, read vs. write heavy, latency requirements). They were visibly pleased. Your data model. They asked me to walk through the schema for posts, users, and rankings explicitly. Where you'd put caching and why. Not just "Redis" but what goes in Redis and what the eviction policy would be. Handling the "hot post" problem. If something goes viral, how does the system degrade gracefully.

What they didn't push on hard at L5: I didn't have to go super deep on consensus algorithms or distributed transactions. The vibe was more "can you reason about tradeoffs" than "prove you've memorized Raft."

I was also asked a follow-up about how I'd A/B test the ranking model, which caught me slightly off guard but makes sense for LinkedIn specifically given how important feed relevance is to their business.

At the end they asked how I'd monitor this system in production. SLOs, alerting thresholds, what a degraded state looks like. That part was 8 minutes or so.

For senior system design at LinkedIn in 2026, I'd say: own the scope, be explicit about your assumptions, and always tie your choices back to user experience or business outcome. Generic "scale to millions of users" talk without LinkedIn-specific context doesn't land as well.

4 replies

corp_refugee

The A/B testing follow-up is a nice signal. Shows they care about shipping and measuring, not just designing in a vacuum. That's a LinkedIn-culture thing, they A/B test everything.

infra_ines

Exactly. And if you've used LinkedIn at all you can reason about this stuff from the user side. I referenced the feed's "post engagement" signals we can all see. Interviewer seemed to like that I thought about it from the product perspective, not just the infra perspective.

staff_steph

Did they ask you to handle the ranking model itself (ML side) or just the serving infrastructure? I'm prepping for an L6 loop and wondering how deep they go.

remote_swe_42

For L6 system design I've heard they care a lot more about leadership signal: how would you break this into work streams, how would you staff it. Did you get any of that flavor at L5?