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


Python pyflink TableDescriptor.Builder.format用法及代码示例


本文简要介绍 python 语言中 pyflink.table.TableDescriptor.Builder.format 的用法。

用法:

format(format: Union[str, FormatDescriptor], format_option: pyflink.common.config_options.ConfigOption[str][str] = None) → pyflink.table.table_descriptor.TableDescriptor.Builder

定义要用于此表的格式。

请注意,并非每个连接器都需要指定格式,而其他连接器可能使用多种格式。

例子:

>>> TableDescriptor.for_connector("kafka")                 ...     .format(FormatDescriptor.for_format("json")
...                 .option("ignore-parse-errors", "true")
...                 .build())

will result in the options:

    'format' = 'json'
    'json.ignore-parse-errors' = 'true'

相关用法


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