当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python pyflink ExecutionConfig.set_execution_mode用法及代码示例


本文简要介绍 python 语言中 pyflink.common.ExecutionConfig.set_execution_mode 的用法。

用法:

set_execution_mode(execution_mode: pyflink.common.execution_mode.ExecutionMode) → pyflink.common.execution_config.ExecutionConfig

设置执行模式以执行程序。执行模式定义数据交换是以批处理方式执行还是以流水线方式执行。

默认执行模式为ExecutionMode.PIPELINED

例子:

>>> config.set_execution_mode(ExecutionMode.BATCH)

参数:

execution_mode- 要使用的执行模式。执行模式可以是ExecutionMode.PIPELINED,ExecutionMode.PIPELINED_FORCED,ExecutionMode.BATCH或者ExecutionMode.BATCH_FORCED.

相关用法


注:本文由纯净天空筛选整理自apache.org大神的英文原创作品 pyflink.common.ExecutionConfig.set_execution_mode。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。