You are viewing a plain text version of this content. The canonical link for it is here.
Posted to reviews@spark.apache.org by GitBox <gi...@apache.org> on 2019/08/02 10:32:37 UTC

[GitHub] [spark] xuanyuanking commented on a change in pull request #25319: [SPARK-28585][WebUI] Improve WebUI DAG information: Add extra info to rdd from spark plan

xuanyuanking commented on a change in pull request #25319: [SPARK-28585][WebUI] Improve WebUI DAG information: Add extra info to rdd from spark plan
URL: https://github.com/apache/spark/pull/25319#discussion_r310073797
 
 

 ##########
 File path: core/src/main/scala/org/apache/spark/ui/scope/RDDOperationGraph.scala
 ##########
 @@ -42,7 +42,8 @@ private[spark] case class RDDOperationGraph(
     rootCluster: RDDOperationCluster)
 
 /** A node in an RDDOperationGraph. This represents an RDD. */
-private[spark] case class RDDOperationNode(id: Int, name: String, cached: Boolean, callsite: String)
+private[spark] case class RDDOperationNode(id: Int, name: String, cached: Boolean, callsite: String,
+                                           extraInfo: Option[String] = None)
 
 Review comment:
   nit: the indent, use 4 blanks

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

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