本文简要介绍 python 语言中 pyflink.datastream.FilterFunction
的用法。
用法:
class pyflink.datastream.FilterFunction
基础:
pyflink.datastream.functions.Function
过滤器函数是单独应用于每条记录的谓词。谓词决定是保留元素还是丢弃它。
使用FilterFunction 的基本语法如下:
>>> ds = ... >>> result = ds.filter(MyFilterFunction())
请注意,系统假定该函数不修改应用谓词的元素。违反此假设可能会导致错误的结果。
相关用法
- Python pyflink FlatMapFunction.flat_map用法及代码示例
- Python pyflink FlatMapFunction用法及代码示例
- Python pyflink FormatDescriptor.Builder.option用法及代码示例
- Python pyflink Table.intersect_all用法及代码示例
- Python pyflink GroupedTable.select用法及代码示例
- Python pyflink StreamTableEnvironment.from_data_stream用法及代码示例
- Python pyflink Expression.to_date用法及代码示例
- Python pyflink Table.fetch用法及代码示例
- Python pyflink PulsarSourceBuilder用法及代码示例
- Python pyflink TableEnvironment.create_temporary_function用法及代码示例
- Python pyflink Table.right_outer_join用法及代码示例
- Python pyflink Expression.json_value用法及代码示例
- Python pyflink Table.distinct用法及代码示例
- Python pyflink WatermarkStrategy.with_timestamp_assigner用法及代码示例
- Python pyflink TableEnvironment.register_table_source用法及代码示例
- Python pyflink Table.where用法及代码示例
- Python pyflink Expression.end用法及代码示例
- Python pyflink lit用法及代码示例
- Python pyflink TableEnvironment.create_java_temporary_function用法及代码示例
- Python pyflink Row.as_dict用法及代码示例
- Python pyflink StreamTableEnvironment.create用法及代码示例
- Python pyflink Table.drop_columns用法及代码示例
- Python pyflink Expression.over用法及代码示例
- Python pyflink Table.execute用法及代码示例
- Python pyflink StreamExecutionEnvironment.set_restart_strategy用法及代码示例
注:本文由纯净天空筛选整理自apache.org大神的英文原创作品 pyflink.datastream.FilterFunction。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。