This topic describes how to connect to Snowflake from Domino.
You must have network connectivity between Snowflake and your Domino deployment.
To use Snowflake code integrations, such as Snowpark, you must agree to the Snowflake third party terms. To agree to these terms, you must have a Snowflake account with the ORGADMIN role. If you don’t have access to a Snowflake account with the ORGADMIN role, submit a Snowflake support ticket.
Warning
| Domino does not officially support this method. We provide this information as a courtesy. |
Connect to Snowflake with Python
-
Use the Snowflake Python connector (snowflake-connector-python).
-
Use the following Dockerfile instruction to install snowflake-connector-python and its dependencies in your environment.
+
RUN apt-get install -y libssl-dev libffi-dev && pip install -U pip && pip install --upgrade snowflake-connector-python