Is there Python API for GraphX? I have come across Scala API but I want to know if its possible to use GraphX functionalities in PySpark.
Asked
Active
Viewed 4,583 times
1 Answers
5
There is no GraphX API for Python, and there won't be one. See SPARK-3789 Python bindings for GraphX. GraphX as such is in the maintenance mode and is no longer actively developed.
You can use Graphframes, which provide Dataframe based graph processing, and optionally interface selected GraphX functions under the covers.
-
I need some tool to handle large scale social networks can you tell me what can be helpful if not GraphX. – Abhishek Sai Shukla May 22 '18 at 08:37
-
What about just visualizing a Graphframe? – Greg Hilston Dec 07 '18 at 19:09