[
https://issues.apache.org/jira/browse/SPARK-23135?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16329353#comment-16329353
]
Marcelo Vanzin commented on SPARK-23135:
----------------------------------------
I'll try to take a look at the code, but do you have code to replicate the
issue?
I tried the following and the page renders fine:
{code}
scala> val acc1 = sc.longAccumulator("acc1")
acc1: org.apache.spark.util.LongAccumulator = LongAccumulator(id: 0, name:
Some(acc1), value: 0)
scala> val acc2 = sc.longAccumulator("acc2")
acc2: org.apache.spark.util.LongAccumulator = LongAccumulator(id: 1, name:
Some(acc2), value: 0)
scala> sc.parallelize(1 to 10, 10).map { i =>
| acc1.add(i)
| acc2.add(i * 2)
| i
| }.collect()
{code}
> Accumulators don't show up properly in the Stages page anymore
> --------------------------------------------------------------
>
> Key: SPARK-23135
> URL: https://issues.apache.org/jira/browse/SPARK-23135
> Project: Spark
> Issue Type: Bug
> Components: Web UI
> Affects Versions: 2.3.0
> Environment:
>
>
> Reporter: Burak Yavuz
> Priority: Blocker
> Attachments: webUIAccumulatorRegression.png
>
>
> Didn't do a lot of digging but may be caused by:
> [https://github.com/apache/spark/commit/1c70da3bfbb4016e394de2c73eb0db7cdd9a6968#diff-0d37752c6ec3d902aeff701771b4e932]
>
> !webUIAccumulatorRegression.png!
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]