Re: GraphX : AssertionError

2014-09-22 Thread Keith Massey
The triangle count also failed for me when I ran it on more than one node. There is this assertion in TriangleCount.scala that causes the failure: // double count should be even (divisible by two) assert((dblCount & 1) == 0) That did not hold true when I ran this on multiple nodes,

Re: TriangleCount & Shortest Path under Spark

2014-03-13 Thread Keith Massey
The triangle count failed for me when I ran it on more than one node. There was this assertion in TriangleCount.scala: // double count should be even (divisible by two) assert((dblCount & 1) == 0) That did not hold true when I ran this on multiple nodes, even when following the gui