You are viewing a plain text version of this content. The canonical link for it is here.
Posted to reviews@spark.apache.org by susanxhuynh <gi...@git.apache.org> on 2017/10/09 14:44:13 UTC

[GitHub] spark pull request #19374: [SPARK-22145][MESOS] fix supervise with checkpoin...

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

    https://github.com/apache/spark/pull/19374#discussion_r143361887
  
    --- Diff: resource-managers/mesos/src/main/scala/org/apache/spark/scheduler/cluster/mesos/MesosClusterScheduler.scala ---
    @@ -276,8 +276,8 @@ private[spark] class MesosClusterScheduler(
       private def recoverState(): Unit = {
         stateLock.synchronized {
           launchedDriversState.fetchAll[MesosClusterSubmissionState]().foreach { state =>
    -        launchedDrivers(state.taskId.getValue) = state
    -        pendingRecover(state.taskId.getValue) = state.slaveId
    +        launchedDrivers(state.driverDescription.submissionId) = state
    +        pendingRecover(state.taskId.toString) = state.slaveId
    --- End diff --
    
    Why did this change? I think the original `getValue` is the standard way to get the value of this TaskID proto. http://mesos.apache.org/api/latest/java/org/apache/mesos/Protos.TaskID.html


---

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