Lock-Free Computation of PageRank in Dynamic Graphs
Subhajit Sahu

TL;DR
This paper introduces a lock-free, fault-tolerant algorithm for efficiently updating PageRank scores in dynamic graphs, significantly reducing wait times and improving performance on multicore architectures.
Contribution
The study presents a novel lock-free PageRank algorithm with a dynamic frontier approach and helping mechanism, enhancing speed and fault tolerance in dynamic graph processing.
Findings
Eliminates iteration barrier wait times.
Achieves 4.6x speedup over naive lock-free methods.
Handles random thread delays and crashes effectively.
Abstract
PageRank is a metric that assigns importance to the vertices of a graph based on its neighbors and their scores. Recently, there has been increasing interest in computing PageRank on dynamic graphs, where the graph structure evolves due to edge insertions and deletions. However, traditional barrier-based approaches for updating PageRanks encounter significant wait times on certain graph structures, leading to high overall runtimes. Additionally, the growing trend of multicore architectures with increased core counts has raised concerns about random thread delays and failures. In this study, we propose a lock-free algorithm for updating PageRank scores on dynamic graphs. First, we introduce our Dynamic Frontier (DF) approach, which identifies and processes vertices likely to change PageRanks with minimal overhead. Subsequently, we integrate DF with our lock-free and fault-tolerant…
Peer Reviews
No public reviews on file for this paper yet. If you reviewed it on a platform where reviews are public (OpenReview, ICLR, NeurIPS, ICML), you can paste yours below so the community can read it here.
Code & Models
Videos
No videos yet. Explain this paper in a talk, walkthrough, or lecture? Add one.
Taxonomy
TopicsAdvanced Database Systems and Queries · Algorithms and Data Compression · Complexity and Algorithms in Graphs
