SIAIDCLGJun 20, 2021

Large-Scale Network Embedding in Apache Spark

arXiv:2106.10620v123 citations
Originality Incremental advance
AI Analysis

This work addresses efficiency bottlenecks for large-scale graph applications in industry, such as social recommendation, though it is incremental as it builds on existing distributed computing frameworks.

The paper tackles the problem of scaling network embedding to large graphs by proposing a distributed algorithm in Apache Spark that recursively partitions graphs and computes embeddings in parallel, achieving 4x faster processing than state-of-the-art methods and up to 4.27% improvements on tasks like link prediction.

Network embedding has been widely used in social recommendation and network analysis, such as recommendation systems and anomaly detection with graphs. However, most of previous approaches cannot handle large graphs efficiently, due to that (i) computation on graphs is often costly and (ii) the size of graph or the intermediate results of vectors could be prohibitively large, rendering it difficult to be processed on a single machine. In this paper, we propose an efficient and effective distributed algorithm for network embedding on large graphs using Apache Spark, which recursively partitions a graph into several small-sized subgraphs to capture the internal and external structural information of nodes, and then computes the network embedding for each subgraph in parallel. Finally, by aggregating the outputs on all subgraphs, we obtain the embeddings of nodes in a linear cost. After that, we demonstrate in various experiments that our proposed approach is able to handle graphs with billions of edges within a few hours and is at least 4 times faster than the state-of-the-art approaches. Besides, it achieves up to $4.25\%$ and $4.27\%$ improvements on link prediction and node classification tasks respectively. In the end, we deploy the proposed algorithms in two online games of Tencent with the applications of friend recommendation and item recommendation, which improve the competitors by up to $91.11\%$ in running time and up to $12.80\%$ in the corresponding evaluation metrics.

Foundations

The foundational work for this paper's niche, ranked by how specifically the neighbourhood builds on it — not by global fame.

Your Notes