本文介绍了我如何使用Python / pyspark运行graphx?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我试图运行使用Python的pyspark星火graphx。我安装看似正确的,因为我能够运行pyspark教程和(Java)的GraphX​​教程就好了。因为GraphX​​ presumably是星火的一部分,pyspark应该能够交互它,正确吗?

I am attempting to run Spark graphx with Python using pyspark. My installation appears correct, as I am able to run the pyspark tutorials and the (Java) GraphX tutorials just fine. Presumably since GraphX is part of Spark, pyspark should be able to interface it, correct?

下面是pyspark教程:
http://spark.apache.org/docs/0.9.0/quick-start.html
http://spark.apache.org/docs/0.9.0/python-programming-guide.html

Here are the tutorials for pyspark:http://spark.apache.org/docs/0.9.0/quick-start.htmlhttp://spark.apache.org/docs/0.9.0/python-programming-guide.html

下面是GraphX​​的那些:
http://spark.apache.org/docs/0.9.0/graphx-programming-guide.html
http://ampcamp.berkeley.edu/big-data-mini-course/graph-analytics-with-graphx.html

Here are the ones for GraphX:http://spark.apache.org/docs/0.9.0/graphx-programming-guide.htmlhttp://ampcamp.berkeley.edu/big-data-mini-course/graph-analytics-with-graphx.html

任何人都可以转换GraphX​​教程是在Python?

Can anyone convert the GraphX tutorial to be in Python?

推荐答案

它看起来像蟒蛇绑定GraphX​​至少滞后星火∞。它正在等待Java API的后面。

It looks like the python bindings to GraphX are delayed at least to Spark ∞. It is waiting behind the Java API.

您可以跟踪在

这篇关于我如何使用Python / pyspark运行graphx?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-24 04:36