Could it be because my edge list file is in the form (1 2), where there
is an edge between node 1 and node 2?
On Tue, Nov 18, 2014 at 4:13 PM, Ankur Dave wrote:
> At 2014-11-18 15:51:52 +0530, Deep Pradhan
> wrote:
> > Yes the above command works, but there is this problem. Most of the
> ti
At 2014-11-18 15:51:52 +0530, Deep Pradhan wrote:
> Yes the above command works, but there is this problem. Most of the times,
> the total rank is Nan (Not a Number). Why is it so?
I've also seen this, but I'm not sure why it happens. If you could find out
which vertices are getting the NaN rank
Yes the above command works, but there is this problem. Most of the times,
the total rank is Nan (Not a Number). Why is it so?
Thank You
On Tue, Nov 18, 2014 at 3:48 PM, Deep Pradhan
wrote:
> What command should I use to run the LiveJournalPageRank.scala?
>
> > If you want to write a separate a
At 2014-11-18 15:35:13 +0530, Deep Pradhan wrote:
> Now, how do I run the LiveJournalPageRank.scala that is there in 1?
I think it should work to use
MASTER=local[*] $SPARK_HOME/bin/run-example graphx.LiveJournalPageRank
/edge-list-file.txt --numEPart=8 --numIter=10
--partStrategy=EdgePart
What command should I use to run the LiveJournalPageRank.scala?
> If you want to write a separate application, the ideal way is to do it in
a separate project that links in Spark as a dependency [1].
But even for this, I have to do the build every time I change the code,
right?
Thank You
On Tue,
At 2014-11-18 14:51:54 +0530, Deep Pradhan wrote:
> I am using Spark-1.0.0. There are two GraphX directories that I can see here
>
> 1. spark-1.0.0/examples/src/main/scala/org/apache/sprak/examples/graphx
> which contains LiveJournalPageRank,scala
>
> 2. spark-1.0.0/graphx/src/main/scala/o
The codes that are present in 2 can be run with the command
*$SPARK_HOME/bin/spark-submit --master local[*] --class
org.apache.spark.graphx.lib.Analytics
$SPARK_HOME/assembly/target/scala-2.10/spark-assembly-*.jar pagerank
/edge-list-file.txt --numEPart=8 --numIter=10
--partStrategy=EdgePartition2