Github user andrewor14 commented on a diff in the pull request:

    https://github.com/apache/spark/pull/42#discussion_r10504478
  
    --- Diff: core/src/main/scala/org/apache/spark/storage/StorageUtils.scala 
---
    @@ -43,14 +47,18 @@ case class StorageStatus(blockManagerId: 
BlockManagerId, maxMem: Long,
       }
     }
     
    -case class RDDInfo(id: Int, name: String, storageLevel: StorageLevel,
    -  numCachedPartitions: Int, numPartitions: Int, memSize: Long, diskSize: 
Long)
    +private[spark]
    +class RDDInfo(val id: Int, val name: String, val numPartitions: Int, val 
storageLevel: StorageLevel)
       extends Ordered[RDDInfo] {
    +
    +  var numCachedPartitions = 0
    +  var memSize = 0L
    +  var diskSize = 0L
    +
    --- End diff --
    
    Same here. RDDInfo now has mutable fields.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

Reply via email to