Github user zsxwing commented on a diff in the pull request:
https://github.com/apache/spark/pull/6672#discussion_r33147254
--- Diff: core/src/main/scala/org/apache/spark/ui/storage/StoragePage.scala
---
@@ -30,11 +30,32 @@ private[ui] class StoragePage(parent: StorageTab)
extends WebUIPage("") {
private val listener = parent.listener
def render(request: HttpServletRequest): Seq[Node] = {
- val rdds = listener.rddInfoList
- val content = UIUtils.listingTable(rddHeader, rddRow, rdds, id =
Some("storage-by-rdd-table"))
+ val blocks = listener.allBlocks.sortBy(_.blockId.toString)
+ val streamBlocks = blocks.filter(_.blockId.isInstanceOf[StreamBlockId])
+ val broadcastBlocks =
blocks.filter(_.blockId.isInstanceOf[BroadcastBlockId])
--- End diff --
Right. Forgot to remove it when I removed broadcast things from this page.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]