Github user squito commented on a diff in the pull request:
https://github.com/apache/spark/pull/7753#discussion_r35861382
--- Diff: core/src/main/scala/org/apache/spark/ui/SparkUI.scala ---
@@ -175,20 +178,22 @@ private[spark] object SparkUI {
listener
}
- val environmentListener = new EnvironmentListener
val storageStatusListener = new StorageStatusListener
- val executorsListener = new ExecutorsListener(storageStatusListener)
val storageListener = new StorageListener(storageStatusListener)
+ val environmentListener = new EnvironmentListener
+ val executorsListener = new ExecutorsListener(storageStatusListener)
+ val memoryListener = new MemoryListener
val operationGraphListener = new RDDOperationGraphListener(conf)
- listenerBus.addListener(environmentListener)
listenerBus.addListener(storageStatusListener)
- listenerBus.addListener(executorsListener)
listenerBus.addListener(storageListener)
+ listenerBus.addListener(environmentListener)
+ listenerBus.addListener(executorsListener)
+ listenerBus.addListener(memoryListener)
--- End diff --
same here on reordering
---
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]