Reputation: 6220
Is there any equivalent of Spark's RDD Aggregate for Flink's DataSet?
After a few hours of searching it seems there is nothing.
Flink's DataSet API has an aggregate(agg: Aggregations, field: String): AggregateDataSet[T]
but from its documentaion it seems its not similar to Spark.
Do I have to implement a custom Aggregations?
Upvotes: 0
Views: 84