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

    https://github.com/apache/spark/pull/17166#discussion_r106555639
  
    --- Diff: core/src/main/scala/org/apache/spark/SparkContext.scala ---
    @@ -2250,6 +2250,22 @@ class SparkContext(config: SparkConf) extends 
Logging {
       }
     
       /**
    +   * Kill and reschedule the given task attempt. Task ids can be obtained 
from the Spark UI
    +   * or through SparkListener.onTaskStart.
    +   *
    +   * @param taskId the task ID to kill. This id uniquely identifies the 
task attempt.
    +   * @param interruptThread whether to interrupt the thread running the 
task.
    +   * @param reason the reason for killing the task, which should be a 
short string. If a task
    +   *   is killed multiple times with different reasons, only one reason 
will be reported.
    +   */
    +  def killTaskAttempt(
    +      taskId: Long,
    +      interruptThread: Boolean = true,
    +      reason: String = "cancelled"): Unit = {
    --- End diff --
    
    As discussed how about "killed via SparkContext.killTaskAttempt" or 
similar? 


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

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

Reply via email to