What to Expect in the Runway System Design Interview

Runway's design round uses questions built from its own product: AI video features at scale. A system design interview asks you to plan the structure of a large software service. Candidates report questions about handling large video assets and using GPUs, the processors that run AI models. Machine learning candidates may get an ML system design round, which adds model serving and evaluation. Expect about an hour: requirements, architecture, then deep follow ups on cost and latency.

The Question Types Runway Asks

  • Media pipelines. Upload, store, process, and deliver very large video files. A single project can hold gigabytes of assets.
  • Generation job systems. A user requests a video, GPU workers produce it, and the user watches progress. This is the signature problem shape.
  • Serving and cost. GPUs are expensive and limited. Designs must schedule work carefully and avoid idle hardware.
  • Product features. Editing tools, sharing, and collaboration on creative projects. Here user experience drives the architecture.

The common thread is heavy compute plus impatient users. Creative users iterate: they generate, judge, adjust, and generate again. Latency, the delay before a result, decides whether that loop feels usable.

What the Interviewer Evaluates

  • Requirements first. Who is the user, how large are the files, and how fast must results arrive.
  • Async thinking. Generation takes seconds to minutes, so the design needs queues and progress updates. A queue is a waiting line for jobs.
  • Cost awareness. Naming GPU utilization as a goal is a strong signal here. Utilization means the share of time hardware spends doing useful work.
  • Failure handling. Jobs fail mid render. The design must retry without losing work or charging users twice.

A Walkthrough: Design a Video Generation Service

Here is a high level plan for the signature question.

Step 1: Requirements. Users submit a prompt and settings, then receive a video. Generation may take up to a few minutes. Users need progress updates and a gallery of results. The system must serve many users with a limited GPU pool.

Step 2: The request path. An API service accepts the job and stores its record. The job enters a queue with a priority, since paying users may go first. The user immediately gets a job id for tracking.

Step 3: GPU workers. A pool of GPU machines pulls jobs from the queue. Each worker loads the model once and reuses it across jobs. Workers report progress events, which the client receives through polling or a push channel.

Step 4: Storage and delivery. Finished videos go to object storage, a service for storing large files. A content delivery network, a set of servers near users, serves playback fast. Store thumbnails and metadata separately for quick gallery loading.

Step 5: Scale, cost, and failure. Autoscale workers on queue length, but note that GPU capacity is limited and slow to add. Checkpoint long jobs so a crashed worker resumes instead of restarting. Make job submission idempotent, meaning a retried request cannot create a duplicate charge.

State the core trade-off out loud. Bigger batches raise GPU efficiency but raise each user's waiting time. Naming that tension, and choosing based on user type, is the strong answer.

Common Mistakes in This Round

  • Designing a synchronous request. A generation that takes minutes cannot block a web request. Missing the queue is the most common failure.
  • Treating GPUs like web servers. They are scarce, costly, and slow to provision. Autoscaling assumptions from stateless services do not transfer.
  • Forgetting the iteration loop. Users generate many drafts before one keeper. Design for cheap previews and fast retries, not single perfect runs.
  • No cost discussion. At an AI company, cost per generation is a first class requirement. Bring it up before the interviewer does.

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
What is the CCNA salary?
What is the highest salary in PayPal?
What are the top courses for mastering FAANG system design interviews?
What is IaaS?
What questions are asked in a Google behavioral interview?
Why do you want to join Twilio?
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.