Graph Databases: The Storage Layer, Execution Engine Layer, and Frontend Layer 🌟
February 10, 2026 · View on GitHub
Surveys, Summary and Tutorials
- Demystifying Graph Databases: Analysis and Taxonomy of Data Organization, System Designs, and Graph Queries (ACM Computing Surveys 2019) [Paper]
- A very good overview of graph databases with clear illustrations! Strongly recommended for beginners.
- The journey of GraphScope [Link]
Overall System Archtecture
- GraphScope Flex: LEGO-like Graph Computing Stack (SIGMOD 2024)
- ByteGraph: A High-Performance Distributed Graph Database in ByteDance (VLDB 2022) [Paper]
The Storage Layer
- GraphAr: An Efficient Storage Scheme for Graph Data in Data Lakes (VLDB 2025) [Paper]
on-disk,immutable graph- LPG in datalake, based on Parquet/ORC.
- LiveGraph: A Transactional Graph Storage System with Purely Sequential Adjacency List Scans (VLDB 2020)
- Groot: Persistent Graph Store [Link]
on-disk,mutable graph- A distributed graph store built on top of the popular RocksDB key-value store. It adopts a row-oriented design to support frequent small updates to the graph. Each row is tagged with a snapshot ID as its version.
- Vineyard
in-memory
- GART: Bridging the Gap between Relational OLTP and Graph-based OLAP (ATC 2024)
in-memory,mutable graph- An in-memory system that extends hybrid transactional/analytical processing (HTAP) systems to support graph analytical processing (GAP).
- Columnar Storage and List-based Processing for Graph Database Management Systems (VLDB 2020) [Github (you can refer to the presentation video)]
in-memory,immutable graph,adjancency list and CSR?
- GraphOne: A Data Store for Real-time Analytics on Evolving Graphs (FAST 2019) [Paper]
in-memory,mutable graph
- GraphChi: Large-Scale Graph Computation on Just a PC (OSDI 2012) [Paper] hot!
on-disk,mutable graph
- GraphCSR: A Degree-Equalized CSR Format for Large-scale Graph Processing (VLDB 2025) [Paper]
in-memory,immutable graph,CSR
Interface
- GRIN [Github]
The Computing Layer
- A1: A Distributed In-Memory Graph Database (Micorsoft, SIGMOD 2020) [Paper]