airflow.contrib.operators.snowflake_operator

Module Contents

class airflow.contrib.operators.snowflake_operator.SnowflakeOperator(sql, snowflake_conn_id='snowflake_default', parameters=None, autocommit=True, warehouse=None, database=None, role=None, schema=None, *args, **kwargs)[source]

Bases: airflow.models.BaseOperator

Executes sql code in a Snowflake database

Parameters
  • snowflake_conn_id (str) – reference to specific snowflake connection id

  • 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)

  • warehouse (str) – name of warehouse (will overwrite any warehouse defined in the connection’s extra JSON)

  • database (str) – name of database (will overwrite database defined in connection)

  • schema (str) – name of schema (will overwrite schema defined in connection)

  • role – name of role (will overwrite any role defined in connection’s extra JSON)

template_fields = ['sql'][source]
template_ext = ['.sql'][source]
ui_color = #ededed[source]
get_hook(self)[source]
execute(self, context)[source]

Was this entry helpful?