tgravescs commented on code in PR #34622:
URL: https://github.com/apache/spark/pull/34622#discussion_r865941900
##########
sql/core/src/main/scala/org/apache/spark/sql/execution/ui/ExecutionPage.scala:
##########
@@ -75,6 +75,12 @@ class ExecutionPage(parent: SQLTab) extends
WebUIPage("execution") with Logging
{jobLinks(JobExecutionStatus.RUNNING, "Running Jobs:")}
{jobLinks(JobExecutionStatus.SUCCEEDED, "Succeeded Jobs:")}
{jobLinks(JobExecutionStatus.FAILED, "Failed Jobs:")}
+ <li>
+ <strong>Completed Stages: </strong>
+ {sqlStore.getStageAttempts(executionId).sorted.map { case
(stage, attempt) =>
+ <a href={stageURL(request, stage,
attempt)}>{stage}</a><span> </span>
Review Comment:
so if stage has multiple attempts, you get the same stage id multiple times
in this list? I wonder if it would be better to differentiate.... either
stage(attempt) but only if there are multiple attempts or could do
stage(attempt0, attempt1,...)
--
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]