cloud-fan commented on code in PR #39057: URL: https://github.com/apache/spark/pull/39057#discussion_r1049199171
########## core/src/main/scala/org/apache/spark/util/AccumulatorV2.scala: ########## @@ -513,3 +513,81 @@ class CollectionAccumulator[T] extends AccumulatorV2[T, java.util.List[T]] { getOrCreate.addAll(newValue) } } + + +/** + * An [[AccumulatorV2 counter]] for collecting a list of (mapper id, row count). + * + * @since 3.4.0 + */ +class MapperRowCounter extends AccumulatorV2[jl.Long, java.util.List[java.util.List[jl.Long]]] { + + private var _agg: java.util.List[java.util.List[jl.Long]] = _ Review Comment: a list of tuple2[int, int]? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org For additional commands, e-mail: reviews-h...@spark.apache.org