本文简要介绍 python 语言中 pyflink.table.window.Tumble
的用法。
用法:
class pyflink.table.window.Tumble
用于创建翻滚窗口的助手类。翻滚窗口是指定固定长度的连续、非重叠窗口。例如,5 分钟大小的滚动窗口以 5 分钟为间隔对元素进行分组。
例子:
>>> from pyflink.table import expressions as expr >>> Tumble.over(expr.lit(10).minutes) ... .on(expr.col("rowtime")) ... .alias("w") >>> Tumble.over("10.minutes").on("rowtime").alias("w")
相关用法
- Python pyflink TumblingEventTimeWindows用法及代码示例
- Python pyflink TumblingProcessingTimeWindows用法及代码示例
- Python pyflink Table.intersect_all用法及代码示例
- Python pyflink Table.fetch用法及代码示例
- Python pyflink TableEnvironment.create_temporary_function用法及代码示例
- Python pyflink Table.right_outer_join用法及代码示例
- Python pyflink Table.distinct用法及代码示例
- Python pyflink TableEnvironment.register_table_source用法及代码示例
- Python pyflink Table.where用法及代码示例
- Python pyflink TableEnvironment.create_java_temporary_function用法及代码示例
- Python pyflink Table.drop_columns用法及代码示例
- Python pyflink Table.execute用法及代码示例
- Python pyflink Table.minus_all用法及代码示例
- Python pyflink TableEnvironment.use_catalog用法及代码示例
- Python pyflink TableResult.collect用法及代码示例
- Python pyflink Table.over_window用法及代码示例
- Python pyflink TableEnvironment.create_temporary_system_function用法及代码示例
- Python pyflink TableResult.get_table_schema用法及代码示例
- Python pyflink TableDescriptor.Builder.option用法及代码示例
- Python pyflink Table.union_all用法及代码示例
- Python pyflink Table.left_outer_join_lateral用法及代码示例
- Python pyflink Table.add_or_replace_columns用法及代码示例
- Python pyflink Table.join用法及代码示例
- Python pyflink Table.minus用法及代码示例
- Python pyflink Table.execute_insert用法及代码示例
注:本文由纯净天空筛选整理自apache.org大神的英文原创作品 pyflink.table.window.Tumble。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。