-
- Downloads
[SPARK-15591][WEBUI] Paginate Stage Table in Stages tab
## What changes were proposed in this pull request? This patch adds pagination support for the Stage Tables in the Stage tab. Pagination is provided for all of the four Job Tables (active, pending, completed, and failed). Besides, the paged stage tables are also used in JobPage (the detail page for one job) and PoolPage. Interactions (jumping, sorting, and setting page size) for paged tables are also included. ## How was this patch tested? Tested manually by using checking the Web UI after completing and failing hundreds of jobs. Same as the testings for [Paginate Job Table in Jobs tab](https://github.com/apache/spark/pull/13620). This shows the pagination for completed stages:  Author: Tao Lin <nblintao@gmail.com> Closes #13708 from nblintao/stageTable.
Showing
- core/src/main/scala/org/apache/spark/ui/PagedTable.scala 1 addition, 0 deletionscore/src/main/scala/org/apache/spark/ui/PagedTable.scala
- core/src/main/scala/org/apache/spark/ui/jobs/AllStagesPage.scala 14 additions, 11 deletions...c/main/scala/org/apache/spark/ui/jobs/AllStagesPage.scala
- core/src/main/scala/org/apache/spark/ui/jobs/JobPage.scala 14 additions, 10 deletionscore/src/main/scala/org/apache/spark/ui/jobs/JobPage.scala
- core/src/main/scala/org/apache/spark/ui/jobs/PoolPage.scala 9 additions, 6 deletionscore/src/main/scala/org/apache/spark/ui/jobs/PoolPage.scala
- core/src/main/scala/org/apache/spark/ui/jobs/StageTable.scala 403 additions, 114 deletions.../src/main/scala/org/apache/spark/ui/jobs/StageTable.scala
This diff is collapsed.
Please register or sign in to comment