Algorithms
Now we dive into the most interesting part of GraphX: algorithms and the graph parallel computation APIs to implement more algorithms. The following table shows a bird's eye view of the algorithms:
Type |
GraphX method/example |
Graph-Parallel Computation |
The method is
|
PageRank |
The method is
staticPageRank(): This provides a static no of iterations and dynamic tolerance; see the parameters (tol versus numIter)
personalizedPageRank(): This is a variation of PageRank that gives a rank relative to a specified "source" vertex in the graph-People
|
You May Know ShortestPaths and SVD++ |
The methods are |
LabelPropagation (LPA... |