This is an automated email from the ASF dual-hosted git repository.

dongjoon pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/spark.git


The following commit(s) were added to refs/heads/master by this push:
     new 89ff8298dcc7 [SPARK-45875][CORE] Remove `MissingStageTableRowData` 
from `core` module
89ff8298dcc7 is described below

commit 89ff8298dcc7d8872281830db837252cf63492e8
Author: yangjie01 <[email protected]>
AuthorDate: Sun Nov 12 14:26:35 2023 -0800

    [SPARK-45875][CORE] Remove `MissingStageTableRowData` from `core` module
    
    ### What changes were proposed in this pull request?
    SPARK-15591(https://github.com/apache/spark/pull/13708) introduced the 
`MissingStageTableRowData`, but it is no longer used after 
SPARK-20648(https://github.com/apache/spark/pull/19698), so this PR removes it.
    
    ### Why are the changes needed?
    Clean up unused code.
    
    ### Does this PR introduce _any_ user-facing change?
    No
    
    ### How was this patch tested?
    Pass GitHub Actions
    
    ### Was this patch authored or co-authored using generative AI tooling?
    No
    
    Closes #43748 from LuciferYang/SPARK-45875.
    
    Authored-by: yangjie01 <[email protected]>
    Signed-off-by: Dongjoon Hyun <[email protected]>
---
 core/src/main/scala/org/apache/spark/ui/jobs/StageTable.scala | 7 -------
 1 file changed, 7 deletions(-)

diff --git a/core/src/main/scala/org/apache/spark/ui/jobs/StageTable.scala 
b/core/src/main/scala/org/apache/spark/ui/jobs/StageTable.scala
index 9e78f29e92e5..0f611c7472eb 100644
--- a/core/src/main/scala/org/apache/spark/ui/jobs/StageTable.scala
+++ b/core/src/main/scala/org/apache/spark/ui/jobs/StageTable.scala
@@ -90,13 +90,6 @@ private[ui] class StageTableRowData(
     val shuffleWrite: Long,
     val shuffleWriteWithUnit: String)
 
-private[ui] class MissingStageTableRowData(
-    stageInfo: v1.StageData,
-    stageId: Int,
-    attemptId: Int) extends StageTableRowData(
-  stageInfo, None, stageId, attemptId, "", None, new Date(0), "", -1, "", 0, 
"", 0, "", 0, "", 0,
-    "")
-
 /** Page showing list of all ongoing and recently finished stages */
 private[ui] class StagePagedTable(
     store: AppStatusStore,


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

Reply via email to