zhengruifeng commented on issue #26803: [SPARK-30178][ML] RobustScaler support 
large numFeatures
URL: https://github.com/apache/spark/pull/26803#issuecomment-564413213
 
 
   @srowen I impl a simple `treeAggregateByKey` 
[here](https://github.com/apache/spark/compare/master...zhengruifeng:treeAggByKey?expand=1),
 and made several local tests like:
   ```scala
   val rdd = sc.range(0, 10000, 1, 100)
   val rdd2 = rdd.map{i => (i % 10, i)}
   val rdd3 = rdd2.treeAggregateByKey(0.0, new HashPartitioner(3))(_+_, _+_, 2)
   rdd3.collect
   ```
   and ran successfully.
   
![image](https://user-images.githubusercontent.com/7322292/70599939-67dd1380-1c29-11ea-8fa8-146972395ef5.png)
   
   BTW, it is reasonable to call `compress` before reduce tasks, so maybe a 
`aggregateByKeyWithinPartitions` is needed? Then we can call `compress` after 
locally aggregation within each partition. I guess they maybe common functions 
and we add this method in RDD/PairRDD?

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org

Reply via email to