20.8 Building a Graph Analytics Job
20.8 Building a Graph Analytics Job Problem Design a batch job that analyzes a large graph and computes useful metrics such as degree counts, connected components, PageRank-style importance scores, and community structure. Graph analytics appears in social networks, fraud detection, recommendation systems, dependency graphs, knowledge graphs, infrastructure topology, citation networks, and web crawlers. The input is usually simple: source,target A,B A,C B,D C,D E,F The output should answer questions such...