How to use the pyflink.common.Configuration function in pyflink

To help you get started, we’ve selected a few pyflink examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github apache / flink / flink-python / pyflink / table / table_config.py View on Github external
def get_configuration(self):
        """
        Gives direct access to the underlying key-value map for advanced configuration.

        :return: Entire key-value configuration.
        :rtype: Configuration
        """
        return Configuration(j_configuration=self._j_table_config.getConfiguration())
github axbaretto / flink / flink-python / pyflink / table / table_config.py View on Github external
def get_configuration(self):
        """
        Gives direct access to the underlying key-value map for advanced configuration.

        :return: Entire key-value configuration.
        :rtype: Configuration
        """
        return Configuration(j_configuration=self._j_table_config.getConfiguration())