Skip to content
Snippets Groups Projects
Commit 204eb32e authored by Reynold Xin's avatar Reynold Xin
Browse files

Changed the type of the persistentRdds hashmap back to

TimeStampedHashMap.
parent 34637b97
No related branches found
No related tags found
No related merge requests found
......@@ -100,7 +100,7 @@ class SparkContext(
private[spark] val addedJars = HashMap[String, Long]()
// Keeps track of all persisted RDDs
private[spark] val persistentRdds: ConcurrentMap[Int, RDD[_]] = new ConcurrentHashMap[Int, RDD[_]]
private[spark] val persistentRdds = new TimeStampedHashMap[Int, RDD[_]]
private[spark] val metadataCleaner = new MetadataCleaner("SparkContext", this.cleanup)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment