Adidas · Primly Community

Adidas senior / L5 system design interview, what to expect (went through it last month)

corp_refugee · 5 replies

Just wrapped up a senior SWE loop at Adidas Tech in their Herzogenaurach office. Sharing because I couldn't find anything useful when I was prepping.

The system design round was 60 minutes with two interviewers, one being my potential team lead. No LeetCode-style problems here. They gave me a prompt roughly equivalent to: design a product catalog service that feeds both the e-commerce site and in-store inventory systems in near real-time.

What they cared about: Consistency model choices. They pushed back hard when I defaulted to eventual consistency without justifying it. Scale reasoning. Adidas does huge global drops (think Yeezy-style release days). They explicitly asked how my design handles sudden 50x traffic spikes. API contract design. They wanted a clear interface between services, not just boxes and arrows. Trade-offs. Every time I said "I'd use Kafka here," someone asked "why not SQS, why not a database queue." You need actual answers.

They didn't ask me to implement anything, but they did ask me to walk through an API spec in pseudocode for one endpoint. That part caught me off guard.

I came from FAANG so the signal was different. They weren't looking for the "correct" Google-style answer. They wanted to see that I could reason under uncertainty and communicate with non-engineers, because the teams are cross-functional (tech + product + brand).

Level context: The role was listed as Senior Software Engineer, which in their internal banding is roughly E5/L5 equivalent based on scope. Scope was owning a domain end-to-end rather than a service.

What to prepare: A scalable read-heavy service (catalog, search, recommendations) Event-driven architecture basics (Kafka, event sourcing) Caching strategies at different layers How you'd approach data consistency across regions

One thing I didn't see mentioned anywhere: they ask follow-up design questions on the trade-off you picked, not just the happy path. Practice defending your decisions out loud.

Total loop was 4 rounds: phone screen, take-home, system design, and two behavioral rounds on the same day. About 3.5 weeks from first contact to offer.

5 replies

staff_steph

The "defend your trade-off" piece is real and underrated. A lot of people prep for "design Twitter" but then freeze when someone pokes a specific choice. Sounds like a pretty solid loop honestly. Did they go deep on reliability engineering at all, like SLOs, error budgets?

corp_refugee

Briefly, yeah. Asked about how I'd think about availability targets for the catalog vs. checkout. Didn't go deep on error budget math but I mentioned it and they nodded. I think they'd reward it if you brought it up naturally.

visa_vik

Was the loop fully in English or did German come up at all? I'm interviewing for their Amsterdam office and my German is nonexistent.

corp_refugee

100% English for the tech interviews. HR screen was English too. I think the expectation for global tech roles is English fluency, not German. Amsterdam is probably the same.

newgrad_neil

Do you know if they have a similar process for SWE II / mid-level? Or is the system design only at senior?