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

    https://github.com/apache/spark/pull/15563#discussion_r87687846
  
    --- Diff: core/src/main/scala/org/apache/spark/util/Utils.scala ---
    @@ -2578,26 +2579,38 @@ private[util] object CallerContext extends Logging {
      * @param taskAttemptNumber task attempt id
      */
     private[spark] class CallerContext(
    -   from: String,
    -   appId: Option[String] = None,
    -   appAttemptId: Option[String] = None,
    -   jobId: Option[Int] = None,
    -   stageId: Option[Int] = None,
    -   stageAttemptId: Option[Int] = None,
    -   taskId: Option[Long] = None,
    -   taskAttemptNumber: Option[Int] = None) extends Logging {
    -
    -   val appIdStr = if (appId.isDefined) s"_${appId.get}" else ""
    -   val appAttemptIdStr = if (appAttemptId.isDefined) 
s"_${appAttemptId.get}" else ""
    -   val jobIdStr = if (jobId.isDefined) s"_JId_${jobId.get}" else ""
    -   val stageIdStr = if (stageId.isDefined) s"_SId_${stageId.get}" else ""
    -   val stageAttemptIdStr = if (stageAttemptId.isDefined) 
s"_${stageAttemptId.get}" else ""
    -   val taskIdStr = if (taskId.isDefined) s"_TId_${taskId.get}" else ""
    -   val taskAttemptNumberStr =
    -     if (taskAttemptNumber.isDefined) s"_${taskAttemptNumber.get}" else ""
    -
    -   val context = "SPARK_" + from + appIdStr + appAttemptIdStr +
    -     jobIdStr + stageIdStr + stageAttemptIdStr + taskIdStr + 
taskAttemptNumberStr
    +  from: String,
    --- End diff --
    
    this is off?


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