大数据Flink(一百零二):SQL 聚合函数(Aggregate Function)

大数据Flink(一百零二):SQL 聚合函数(Aggregate Function)_第1张图片

文章目录

SQL 聚合函数(Aggregate Function)


SQL 聚合函数(Aggregate Function)

Python UDAF,即 Python AggregateFunction。Python UDAF 用来针对一组数据进行聚合运算,比如同一个 window 下的多条数据、或者同一个 key 下的多条数据等。针对同一组输入数据,Python AggregateFunction 产生一条输出数据。比如以下示例,定义了一个名字为 weighted_avg 的 Python UDAF:

from pyflink.common import Ro

你可能感兴趣的:(大数据入门核心技术,#,Flink,大数据,flink)