You are viewing a plain text version of this content. The canonical link for it is here.
Posted to reviews@spark.apache.org by zsxwing <gi...@git.apache.org> on 2015/10/17 06:02:00 UTC

[GitHub] spark pull request: SPARK-4921. TaskSetManager.dequeueTask returns...

Github user zsxwing commented on the pull request:

    https://github.com/apache/spark/pull/3816#issuecomment-148884107
  
    @sryza, could you reopen this one? 
    
    TaskInfo will be sent to SparkListener. Without this patch, for NO_PREF RDDs, their `taskLocality`s in `TaskInfo` will be `PROCESS_LOCAL`, and the user can see it in SparkListener. Test codes:
    ```
        import org.apache.spark.scheduler.{SparkListenerTaskStart, SparkListener}
        sc.addSparkListener(new SparkListener{
          override def onTaskStart(taskStart: SparkListenerTaskStart): Unit = {
            println("taskLocality: " + taskStart.taskInfo.taskLocality)
          }
        })
        sc.parallelize(1 to 10, 1).count()
    ```


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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