I have implemented Accumulators to see counts of events in my code. But I cannot see them in the Spark UI. I am using the following things :
val count_Of_2317508_1 = sc.longAccumulator("count_Of_2317508_1")
count_Of_2317508_1.add(1)
on some condition.
Is this enough for it to show up on the Spark UI?
