You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@spark.apache.org by Qi Song <so...@gmail.com> on 2014/04/21 03:18:18 UTC

Long running time for GraphX pagerank in dataset com-Friendster

Hello~
I was running some pagerank tests of GraphX in my 8 nodes cluster. I
allocated each worker 32G memory and 8 CPU cores. The LiveJournal dataset
used 370s, which in my mind is reasonable. But when I tried the
com-Friendster data ( http://snap.stanford.edu/data/com-Friendster.html )
with 65608366 nodes and 1806067135 edges, it took more than 70 hours and is
still running. I'm not sure what caused such a strange phenomenon, the
graph's structure or some unrealized properties of GraphX?
Thanks~
 



--
View this message in context: http://apache-spark-user-list.1001560.n3.nabble.com/Long-running-time-for-GraphX-pagerank-in-dataset-com-Friendster-tp4511.html
Sent from the Apache Spark User List mailing list archive at Nabble.com.

Re: Long running time for GraphX pagerank in dataset com-Friendster

Posted by Qi Song <so...@gmail.com>.
Thanks Ankurdave~
The reason is actually the out of memory. 

Bests~



--
View this message in context: http://apache-spark-user-list.1001560.n3.nabble.com/Long-running-time-for-GraphX-pagerank-in-dataset-com-Friendster-tp4511p4533.html
Sent from the Apache Spark User List mailing list archive at Nabble.com.

Re: Long running time for GraphX pagerank in dataset com-Friendster

Posted by Ankur Dave <an...@gmail.com>.
On Sun, Apr 20, 2014 at 6:18 PM, Qi Song <so...@gmail.com> wrote:

> I was running some pagerank tests of GraphX in my 8 nodes cluster. I
> allocated each worker 32G memory and 8 CPU cores. The LiveJournal dataset
> used 370s, which in my mind is reasonable. But when I tried the
> com-Friendster data ( http://snap.stanford.edu/data/com-Friendster.html )
> with 65608366 nodes and 1806067135 edges, it took more than 70 hours and is
> still running.


Maybe GraphX is running out of memory? You can check memory usage and total
memory available to the workers by looking at the Executors tab in the
Spark UI.

Ankur <http://www.ankurdave.com/>