sakcruise opened a new issue #8379: Creating a chart using snowflake connection throws no hooks found error. URL: https://github.com/apache/airflow/issues/8379 After adding snowflake connections in Admin -> Connections UI. Trying to create a chart using DataProfiling -> Charts using the snowflake connection, throws the below error **SQL execution failed. Details: Unknown hook type snowflake** <!-- IMPORTANT!!! Please complete the next sections or the issue will be closed. This questions are the first thing we need to know to understand the context. --> **Apache Airflow version**: 1.10.9 **Kubernetes version (if you are using kubernetes)** (use `kubectl version`): NA **Environment**: - **Cloud provider or hardware configuration**: - **OS** (e.g. from /etc/os-release): MAC Mojave - **Kernel** (e.g. `uname -a`): - **Install tools**: - **Others**: **What happened**: Error: SQL execution failed. Details: Unknown hook type snowflake! **What you expected to happen**: It should list the data from the table. **How to reproduce it**: Add snowflake connections in admin section and use that to create a chart. just a data table type. should give you this error.  **Anything else we need to know**: I know the exact reason, its because in connections.py (airflow.models.connections) https://github.com/apache/airflow/blob/master/airflow/models/connection.py CONN_TYPE_TO_HOOK does not have the definition for 'snowflake'. And it should work after adding the below line. But i dont want to change that file. Its good to be fixed. ` "snowflake": ("airflow.contrib.hooks.snowflake_hook", "snowflake_conn_id")`
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
