當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。