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


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


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

用法:

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

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

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

临时对象可以遮盖永久对象。如果给定路径中存在永久对象,则在当前会话中将无法访问。要使永久对象再次可用,可以删除相应的临时对象。

例子:

>>> table_env.create_temporary_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_temporary_table。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。