Github user srowen commented on a diff in the pull request:
https://github.com/apache/spark/pull/14969#discussion_r77597178
--- Diff: core/src/main/scala/org/apache/spark/ui/exec/ExecutorsTab.scala
---
@@ -59,7 +59,9 @@ class ExecutorsListener(storageStatusListener:
StorageStatusListener, conf: Spar
val executorToShuffleRead = HashMap[String, Long]()
val executorToShuffleWrite = HashMap[String, Long]()
val executorToLogUrls = HashMap[String, Map[String, String]]()
- val executorIdToData = HashMap[String, ExecutorUIData]()
+ var executorEvents = new mutable.ListBuffer[SparkListenerEvent]()
+
+ val MAX_EXECUTOR_LIMIT =
conf.getInt("spark.ui.timeline.executors.maximum", 1000)
--- End diff --
It's not really executors but tasks right? we already have a property for
limiting tasks, spark.ui.timeline.tasks.maximum. It would be reasonable to
apply it here?
---
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]