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

    https://github.com/apache/spark/pull/63#discussion_r10232174
  
    --- Diff: core/src/main/scala/org/apache/spark/scheduler/WorkerOffer.scala 
---
    @@ -21,4 +21,6 @@ package org.apache.spark.scheduler
      * Represents free resources available on an executor.
      */
     private[spark]
    -class WorkerOffer(val executorId: String, val host: String, val cores: Int)
    +class WorkerOffer(val executorId: String, val host: String, var cores: 
Int) {
    +  @transient val totalcores = cores
    --- End diff --
    
    +1 I'd also like to see WorkerOffer remain more like an immutable message 
type, with derived,  mutable structures created only locally within the 
implementations that need it.


---
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