Github user viirya commented on a diff in the pull request:
https://github.com/apache/spark/pull/19763#discussion_r152911829
--- Diff:
core/src/main/scala/org/apache/spark/internal/config/package.scala ---
@@ -485,4 +485,13 @@ package object config {
"array in the sorter.")
.intConf
.createWithDefault(Integer.MAX_VALUE)
+
+ private[spark] val SHUFFLE_MAP_OUTPUT_PARALLEL_AGGREGATION_THRESHOLD =
+ ConfigBuilder("spark.shuffle.mapOutput.parallelAggregationThreshold")
+ .internal()
+ .doc("Multi-thread is used when the number of mappers * shuffle
partitions is greater than " +
+ "or equal to this threshold.")
--- End diff --
Says `statuses.length.toLong * totalSizes.length` is `10010000`, for
example:
```scala
scala> 10010000 / 10000001
res0: Int = 1
```
Now, it is more than the threshold, but the parallel aggregation is not
enabled...
---
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]