
Deep dive into the specialized Graph Abstraction layer managing 650TB of real-time data at scale.
This article provides a masterclass on building high-throughput distributed graph systems. It demonstrates how Netflix leverages existing data abstractions to solve complex relationship queries without sacrificing performance or scalability. It details the intricate balance between consistency and latency in a massive-scale production environment.
Highly recommended for backend architects and distributed systems engineers dealing with massive-scale graph data and latency constraints.
Netflix needed an OLTP-centric graph architecture capable of supporting millions of operations per second with millisecond-level latency for real-time streaming and user experiences. Standard graph solutions often failed to meet both the high throughput and low latency requirements simultaneously.
Netflix developed a 'Graph Abstraction' layer on top of its existing Key-Value and TimeSeries abstractions, utilizing a Property Graph model with strongly typed schemas. The architecture decouples edge links from property indexes and employs a Kafka-based asynchronous entropy repair mechanism.
The system now handles approximately 10 million operations per second across 650 TB of graph datasets with high cost-efficiency. It successfully powers critical use cases like real-time service topology and social graphs for gaming.
Trade-off
To prioritize performance, the system sacrifices atomic writes across multiple namespaces, requiring acceptance of eventual consistency and the implementation of complex background repair mechanisms.
A versatile graph data model where nodes and edges can hold associated properties.
A distributed key-value storage abstraction layer at Netflix serving as the real-time graph index.
A robust mechanism to fix data inconsistencies across distributed indexes.




