gengliangwang commented on code in PR #41440:
URL: https://github.com/apache/spark/pull/41440#discussion_r1221944962


##########
core/src/main/scala/org/apache/spark/status/api/v1/api.scala:
##########
@@ -199,6 +199,7 @@ class JobData private[spark](
     val completionTime: Option[Date],
     val stageIds: collection.Seq[Int],
     val jobGroup: Option[String],
+    val jobTags: collection.Seq[String],

Review Comment:
   I wonder if the following would fix the mima check
   ```
   class JobData private[spark](
       val jobId: Int,
       val name: String,
       val description: Option[String],
       val submissionTime: Option[Date],
       val completionTime: Option[Date],
       val stageIds: collection.Seq[Int],
       val jobGroup: Option[String],
       val status: JobExecutionStatus,
       val numTasks: Int,
       val numActiveTasks: Int,
       val numCompletedTasks: Int,
       val numSkippedTasks: Int,
       val numFailedTasks: Int,
       val numKilledTasks: Int,
       val numCompletedIndices: Int,
       val numActiveStages: Int,
       val numCompletedStages: Int,
       val numSkippedStages: Int,
       val numFailedStages: Int,
       val killedTasksSummary: Map[String, Int],
       val jobTags: Option[collection.Seq[String]])
   ```



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to