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


Python pyflink TableEnvironment.create_table用法及代码示例


本文简要介绍 python 语言中 pyflink.table.TableEnvironment.create_table 的用法。

用法:

create_table(path: str, descriptor: pyflink.table.table_descriptor.TableDescriptor)

将给定的 TableDescriptor 注册为目录表。

TableDescriptor 转换为 CatalogTable 并存储在目录中。

如果表不应永久存储在目录中,请改用create_temporary_table()

例子:

>>> table_env.create_table("MyTable", TableDescriptor.for_connector("datagen")
...     .schema(Schema.new_builder()
...                   .column("f0", DataTypes.STRING())
...                   .build())
...     .option("rows-per-second", 10)
...     .option("fields.f0.kind", "random")
...     .build())

参数:

  • path- 将在其下注册表的路径。

  • descriptor- 用于创建CatalogTable 实例的模板。

版本 1.14.0 中的新函数。

相关用法


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