Just finished the Tesla SWE senior loop and the system design round was... different from what I expected coming from FAANG-style prep.
First thing: they don't call levels L5 at Tesla. Internally it's more like Staff / Senior / Mid but recruiters will say things like "this is equivalent to a senior or L5 role" when you ask them to translate. Keep that in mind when you're calibrating.
The system design round was 60 minutes, one interviewer, no whiteboard (virtual call, shared doc). The prompt I got was roughly: design a real-time telemetry ingestion system for vehicle sensor data. Think millions of events per second, latency matters, you need to surface anomalies to a fleet ops team.
What they actually cared about: Could I scope the problem quickly and make explicit tradeoffs. They pushed back whenever I tried to go wide without choosing. Data model and partitioning strategy. I talked through time-series approaches (Kafka topic per vehicle type, Flink for stream processing) and they engaged hard on the consumer side. Failure modes. "What happens when a vehicle loses connectivity mid-stream?" They wanted me to reason about at-least-once vs exactly-once delivery, not just name-drop Kafka. Operational visibility. Monitoring, alerting, how an on-call engineer would debug a spike.
What they seemed less focused on: fancy distributed consensus algorithms, CAP theorem as a quiz, or perfect API design. It felt more like a domain-aware systems conversation.
One thing that surprised me: the interviewer knew the domain. They'd worked on vehicle data pipelines internally. You can tell because they'd say "we actually run into this" and probe in ways a generic interviewer wouldn't. That's good if you know your stuff and uncomfortable if you're just pattern-matching off Grokking.
Prep that helped: Designing Data-Intensive Applications (Kleppmann), and specifically stream processing chapters. Also reading some of Tesla's Autopilot engineering blog posts to get a feel for the scale they deal with.
Happy to answer questions on specifics. Overall I found the design round fairer than a lot of places.