Uploaded image for project: 'Spark'
  1. Spark
  2. SPARK-1931

Graph.partitionBy does not reconstruct routing tables

Log workAgile BoardRank to TopRank to BottomAttach filesAttach ScreenshotBulk Copy AttachmentsBulk Move AttachmentsVotersWatch issueWatchersCreate sub-taskConvert to sub-taskMoveLinkCloneLabelsUpdate Comment AuthorReplace String in CommentUpdate Comment VisibilityDelete CommentsDelete
    XMLWordPrintableJSON

Details

    • Bug
    • Status: Resolved
    • Major
    • Resolution: Fixed
    • 1.0.0
    • 1.0.1
    • GraphX
    • None

    Description

      Commit 905173df57b90f90ebafb22e43f55164445330e6 introduced a bug in partitionBy where, after repartitioning the edges, it reuses the VertexRDD without updating the routing tables to reflect the new edge layout. This causes the following test to fail:

            import org.apache.spark.graphx._
            val g = Graph(
              sc.parallelize(List((0L, "a"), (1L, "b"), (2L, "c"))),
              sc.parallelize(List(Edge(0L, 1L, 1), Edge(0L, 2L, 1)), 2))
            assert(g.triplets.collect.map(_.toTuple).toSet ==
              Set(((0L, "a"), (1L, "b"), 1), ((0L, "a"), (2L, "c"), 1)))
            val gPart = g.partitionBy(PartitionStrategy.EdgePartition2D)
            assert(gPart.triplets.collect.map(_.toTuple).toSet ==
              Set(((0L, "a"), (1L, "b"), 1), ((0L, "a"), (2L, "c"), 1)))
      

      Attachments

        Activity

          This comment will be Viewable by All Users Viewable by All Users
          Cancel

          People

            ankurd Ankur Dave Assign to me
            ankurd Ankur Dave
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved:

              Slack

                Issue deployment