New Rider App Architecture
Article Summary
Uber threw away years of code and rebuilt their rider app from scratch. Here's why that radical decision paid off.
When Uber's original MVC architecture couldn't scale to millions of daily rides across hundreds of cities, they made a bold call: complete rewrite. The result is Riblets, a new cross-platform architecture pattern that puts business logic before view logic.
Key Takeaways
- Target: 99.99% availability (just 1 hour downtime per year)
- Riblets route via business logic, not views like MVC or VIPER
- Unified iOS and Android architecture with shared class names and patterns
- Core code gets stringent review; optional features auto-disable if buggy
- Six components per Riblet: Router, Interactor, Builder, Component, Presenter, View
Critical Insight
Uber's Riblets architecture separates core flows from experimental features, enabling reliable scaling while hundreds of engineers ship features in parallel across platforms.