You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@spark.apache.org by "Tien-Dung LE (JIRA)" <ji...@apache.org> on 2015/07/16 17:45:04 UTC

[jira] [Created] (SPARK-9109) Unpersist a graph object does not work properly

Tien-Dung LE created SPARK-9109:
-----------------------------------

             Summary: Unpersist a graph object does not work properly
                 Key: SPARK-9109
                 URL: https://issues.apache.org/jira/browse/SPARK-9109
             Project: Spark
          Issue Type: Bug
    Affects Versions: 1.4.0, 1.3.1
            Reporter: Tien-Dung LE


Unpersist a graph object does not work properly.

Here is the code to produce 

<code>
import org.apache.spark.graphx._
import org.apache.spark.rdd.RDD
import org.slf4j.LoggerFactory
import org.apache.spark.graphx.util.GraphGenerators

val graph: Graph[Long, Long] =
  GraphGenerators.logNormalGraph(sc, numVertices = 100).mapVertices( (id, _) => id.toLong ).mapEdges( e => e.attr.toLong)
  
graph.cache().numEdges
graph.unpersist()
</code>

There should not be any cached RDDs in storage (http://localhost:4040/storage/).



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@spark.apache.org
For additional commands, e-mail: issues-help@spark.apache.org