HyukjinKwon commented on a change in pull request #23763: [SPARK-26861][SQL] deprecate typed sum/count/average URL: https://github.com/apache/spark/pull/23763#discussion_r256037325
########## File path: examples/src/main/scala/org/apache/spark/examples/sql/SimpleTypedAggregator.scala ########## @@ -0,0 +1,86 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.spark.examples.sql + +import org.apache.spark.sql.{Encoder, Encoders, SparkSession} +import org.apache.spark.sql.expressions.Aggregator + +// scalastyle:off println +object SimpleTypedAggregator { + + def main(args: Array[String]): Unit = { + val spark = SparkSession + .builder + .master("local") + .appName("common typed aggregator implementations") + .getOrCreate() + + import spark.implicits._ + val ds = spark.range(20).select(('id % 3).as("key"), 'id).as[(Long, Long)] + println("input data:") + ds.show() + + println("running typed sum:") + ds.groupByKey(_._1).agg(new TypedSum[(Long, Long)](_._2).toColumn).show() + + println("running typed count:") + ds.groupByKey(_._1).agg(new TypedCount[(Long, Long)](_._2).toColumn).show() + + println("running typed average:") + ds.groupByKey(_._1).agg(new TypedAverage[(Long, Long)](_._2.toDouble).toColumn).show() + + spark.stop() + } +} +// scalastyle:on println + +class TypedSum[IN](val f: IN => Long) extends Aggregator[IN, Long, Long] { Review comment: Yup, +1 to have an example somewhere like this since `Aggregator` seems to be still an API, it looks better to let users know how to use it. If we go ahead with getting these out, the current PR looks quite good and conservative. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
