Ctrl+K
Logo image Logo image

Site Navigation

  • API Reference
  • Examples

Site Navigation

  • API Reference
  • Examples

Section Navigation

  • PyFlink Table
  • PyFlink DataFrame
    • DataFrame
    • DataFrame Creation
    • Input/Output
    • SQL
    • Data Types
    • User Defined Functions
    • Configuration
    • Catalog
    • GPU Support
    • AI / LLM
  • PyFlink Multimodal
  • PyFlink DataStream
  • PyFlink Common

pyflink.dataframe.create_catalog#

create_catalog(name: str, options: Mapping[str, Any]) → None[source]#

Create a catalog in the DataFrame default TableEnvironment.

Parameters
  • name – Catalog name.

  • options – Catalog options. Keys and values are converted to strings.

Example:

>>> import pyflink.dataframe as pf
>>> pf.create_catalog("my_fluss", {
...         "type": "fluss",
...         "bootstrap.servers": "localhost:9123",
...     },
... )

previous

Catalog

next

pyflink.dataframe.use_catalog

Show Source

Created using Sphinx 4.5.0.