InterviewSolution
Saved Bookmarks
| 1. |
What is a GraphX? How the RDD ineract to the graph DB and what are the operation can perform on Graph DB? Syntax of creating graphx? |
|
Answer» GRAPHX is a part of Spark framework, which use for graph and graph based PARALLEL processing, GraphX extends the Spark RDD by introducing a NEW Graph abstraction: a directed multigraph with properties attached to each vertex and edge. To support graph computation.
GraphX in spark are immutable, distributed, and fault-tolerant. Changes to the values or structure of the graph are accomplished by producing a new graph with the desired changes. |
|