yliou commented on code in PR #34622:
URL: https://github.com/apache/spark/pull/34622#discussion_r866372381
##########
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:
Yes, though items are added to StageAttempts from `onStageCompleted` so we
shouldn't be hitting this issue.
--
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]