airflow.providers.exasol.operators.exasol

Module Contents

Classes

ExasolOperator

Executes sql code in a specific Exasol database

class airflow.providers.exasol.operators.exasol.ExasolOperator(*, sql: str, exasol_conn_id: str = 'exasol_default', autocommit: bool = False, parameters: Optional[dict] = None, schema: Optional[str] = None, **kwargs)[source]

Bases: airflow.models.BaseOperator

Executes sql code in a specific Exasol database

Parameters
  • sql (Can receive a str representing a sql statement, a list of str (sql statements), or reference to a template file. Template reference are recognized by str ending in '.sql') -- the sql code to be executed. (templated)

  • exasol_conn_id (string) -- reference to a specific Exasol database

  • autocommit (bool) -- if True, each command is automatically committed. (default value: False)

  • parameters (dict) -- (optional) the parameters to render the SQL query with.

  • schema (string) -- (optional) name of the schema which overwrite defined one in connection

template_fields :Sequence[str] = ['sql'][source]
template_ext :Sequence[str] = ['.sql'][source]
ui_color = #ededed[source]
execute(self, context: airflow.utils.context.Context) None[source]

This is the main method to derive when creating an operator. Context is the same dictionary used as when rendering jinja templates.

Refer to get_template_context for more context.

Was this entry helpful?