Github user mengxr commented on a diff in the pull request:

    https://github.com/apache/spark/pull/1110#discussion_r15508718
  
    --- Diff: 
mllib/src/main/scala/org/apache/spark/mllib/rdd/RDDFunctions.scala ---
    @@ -44,6 +47,65 @@ class RDDFunctions[T: ClassTag](self: RDD[T]) {
           new SlidingRDD[T](self, windowSize)
         }
       }
    +
    +  /**
    +   * Reduces the elements of this RDD in a tree pattern.
    +   * @param depth suggested depth of the tree
    +   * @see [[org.apache.spark.rdd.RDD#reduce]]
    +   */
    +  def treeReduce(f: (T, T) => T, depth: Int): T = {
    +    require(depth >= 1, s"Depth must be greater than 1 but got $depth.")
    +    val cleanF = self.context.clean(f)
    +    val reducePartition: Iterator[T] => Option[T] = iter => {
    +      if (iter.hasNext) {
    +        Some(iter.reduceLeft(cleanF))
    +      } else {
    +        None
    +      }
    +    }
    +    val local = self.mapPartitions(it => Iterator(reducePartition(it)))
    +    val op: (Option[T], Option[T]) => Option[T] = (c, x) => {
    +      if (c.isDefined && x.isDefined) {
    +        Some(cleanF(c.get, x.get))
    +      } else if (c.isDefined) {
    +        c
    +      } else if (x.isDefined) {
    +        x
    +      } else {
    +        None
    +      }
    +    }
    +    RDDFunctions.fromRDD(local).treeAggregate(Option.empty[T])(op, op, 
depth)
    +      .getOrElse(throw new UnsupportedOperationException("empty 
collection"))
    +  }
    +
    +  /**
    +   * Aggregates the elements of this RDD in a tree pattern.
    +   * @param depth suggested depth of the tree
    +   * @see [[org.apache.spark.rdd.RDD#aggregate]]
    +   */
    +  def treeAggregate[U: ClassTag](zeroValue: U)(
    +    seqOp: (U, T) => U,
    --- End diff --
    
    done


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

Reply via email to