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.context.DataFrameConfig#

class DataFrameConfig[source]#

Configuration for DataFrame operations.

Stores key-value config pairs and applies them to the underlying TableEnvironment. If a TableEnvironment is already set, configs are applied immediately. Otherwise, they are buffered and applied when the environment becomes available.

Example::
>>> import pyflink.dataframe as pf
>>> pf.config.set("parallelism.default", "4")
>>> pf.config.get("parallelism.default")
'4'

Methods

get(key[, default])

Get a configuration value.

set(key, value)

Set a configuration key-value pair.

previous

Configuration

next

pyflink.dataframe.context.DataFrameConfig.set

Show Source

Created using Sphinx 4.5.0.