Github user shivaram commented on a diff in the pull request:
https://github.com/apache/spark/pull/1309#discussion_r15258695
--- Diff: core/src/main/scala/org/apache/spark/Accumulators.scala ---
@@ -51,6 +51,13 @@ class Accumulable[R, T] (
Accumulators.register(this, true)
+ /** A name for this accumulator / accumulable for display in Spark's UI.
+ * Note that names must be unique within a SparkContext. */
+ def name: String = s"accumulator_$id"
+
+ /** Whether to display this accumulator in the web UI. */
+ def display: Boolean = true
--- End diff --
+1 on this. It'd be good to have a drop-down like thing where you can pick
a subset of accumulators you want to show.
---
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.
---