當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python pyflink ReduceFunction用法及代碼示例


本文簡要介紹 python 語言中 pyflink.datastream.ReduceFunction 的用法。

用法:

class pyflink.datastream.ReduceFunction

基礎:pyflink.datastream.functions.Function

Reduce 函數的基本接口。歸約函數通過總是取兩個元素並將它們組合成一個,將一組元素組合成一個值。歸約函數可用於整個數據集或分組數據集。在後一種情況下,每個組都單獨減少。

使用ReduceFunction 的基本語法如下:

>>> ds = ...
>>> new_ds = ds.key_by(lambda x: x[1]).reduce(MyReduceFunction())

相關用法


注:本文由純淨天空篩選整理自apache.org大神的英文原創作品 pyflink.datastream.ReduceFunction。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。