What to Expect in the Miro System Design Interview

Miro's system design round is about an hour long, and it happens on a Miro board. Expect questions about the company's own product domain: real-time collaboration at large scale. Reported examples include designing the whiteboard's edit sync, tracking cursors for millions of users, and keeping shared objects consistent. The interviewer evaluates architecture and communication together, and the board itself is your communication tool. Practice drawing designs in Miro before the interview.

Why Real-Time Collaboration Dominates

Miro's product is a shared canvas where many people edit at once. Every mouse movement, sticky note, and shape change must reach other users quickly. The systems behind this must handle sudden load, conflicting edits, and users on slow networks. So the interview tests whether you can design for those exact conditions. Generic scaling talk is not enough. Answers must engage with the collaboration problem directly.

Question Types Candidates Report

  • Design the real-time whiteboard sync. Handle thousands of simultaneous edits on one board. The walkthrough below covers this shape.
  • Design presence and cursors. Show who is on the board and where their pointer is, for millions of users. Presence means the live indication of who is currently active.
  • Keep one object consistent under concurrent edits. Two users resize the same shape at once. The design must end with both users seeing the same shape.
  • Broadcast events at scale. Distribute updates using a publish-subscribe system, where senders publish events and interested clients subscribe to them.
  • Handle unpredictable load. A large company workshop can put hundreds of editors on one board within a minute.

A Walkthrough: Sync for a Shared Whiteboard

Step 1: Requirements. Many editors per board, updates visible within about 100 milliseconds. Boards must survive server failures without losing work. Users on poor networks must catch up cleanly. State these targets aloud before drawing anything.

Step 2: Connections. Each client holds a WebSocket, a long-lived two-way connection to a sync server. Every edit becomes a small event: object id, change, author, and time. Small events keep the network cost per edit low.

Step 3: Ordering. One server owns each board at a time and orders its events. Assigning boards to servers is sharding: splitting load by key, here the board id. This gives one authoritative event sequence per board.

Step 4: Conflict handling. Explain the two standard approaches by name. Operational transformation (OT) rewrites concurrent operations so they apply cleanly in any order. Conflict-free replicated data types (CRDTs) are data structures that merge concurrent edits automatically. For a whiteboard, per-property last-writer-wins on shapes is often enough. Saying when the simple rule fails, such as for text on stickies, earns credit.

Step 5: Fan-out. The sync server publishes accepted events to a publish-subscribe channel per board. Subscribed edge servers forward events to their connected clients. Cursor positions can be sent at a lower rate, since they are disposable.

Step 6: Persistence and catch-up. Events append to a log, and snapshots of board state are saved regularly. A reconnecting client loads the latest snapshot plus the events after it. A quick estimate helps: 500 editors sending five events per second is 2,500 events per second per board, which one server handles comfortably.

What the Interviewer Grades

Whether updates stay fast at realistic scale. Whether all clients converge, meaning they reach identical board state. How you reason about tradeoffs, such as CRDTs against simpler rules. And how clearly you draw and explain the design on the board itself. A tidy diagram with labeled arrows counts as communication skill here, because the product is the diagram tool.

How to Prepare

TAGS
System Design Interview
CONTRIBUTOR
Arslan Ahmad
Arslan Ahmad
ex-FAANG engineering manager and author or Grokking series.
-

GET YOUR FREE

Coding Questions Catalog

Design Gurus Newsletter - Latest from our Blog
Boost your coding skills with our essential coding questions catalog.
Take a step towards a better tech career now!
Explore Answers
Experimenting with different coding styles to find personal fit
What do software interns do?
What Is the Redis Interview Process Like? (Round by Round)
The Redis engineering interview stages that candidates report, from recruiter call to final HR conversation, with a preparation plan for each.
What is CORS and How to Fix It.
Learn what CORS (Cross-Origin Resource Sharing) is, why it causes errors, how to fix it, common trade-offs, and pitfalls. A clear, interview-ready guide for beginners and developers.
What is the best way to study software engineering?
Where to find detailed company-specific system design interview case studies
Find detailed company-specific system design interview case studies for Google, Meta, Amazon, Netflix, and Stripe. Covers formats, questions, rubrics, and prep resources.
Related Courses
New
Grokking the AI System Design Interview course cover
Grokking the AI System Design Interview
Learn to design AI systems the way interviewers expect: classic ML products, LLM and RAG architectures, and agentic systems, all through the lens of the system design interview.
4.6
(3,192 learners)
Discounted price for Your Region

$123

Grokking the Coding Interview: Patterns for Coding Questions course cover
Grokking the Coding Interview: Patterns for Coding Questions
The 24 essential patterns behind every coding interview question. Available in Java, Python, JavaScript, C++, C#, and Go. The most comprehensive coding interview course with 543 lessons. A smarter alternative to grinding LeetCode.
4.6
Discounted price for Your Region

$197

Grokking Modern AI Fundamentals course cover
Grokking Modern AI Fundamentals
Master the fundamentals of AI today to lead the tech revolution of tomorrow.
4.1
Discounted price for Your Region

$72

Design Gurus logo
One-Stop Portal For Tech Interviews.
Copyright © 2026 Design Gurus, LLC. All rights reserved.