You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/content/docs/snowflake/getting-started/faq.md
+1-4Lines changed: 1 addition & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,9 +4,6 @@ description: Frequently asked questions about LocalStack for Snowflake
4
4
template: doc
5
5
---
6
6
7
-
8
-
9
-
10
7
## FAQs
11
8
12
9
### Are Snowflake v2 APIs supported?
@@ -35,4 +32,4 @@ A CI key allows you to use LocalStack in your CI environment. Every activation o
35
32
36
33
### How can I get help with the Snowflake emulator?
37
34
38
-
The Snowflake emulator is currently in **preview**. To get help, you can join the [Slack community](https://localstack.cloud/slack) and share your feedback, questions, and suggestions with the LocalStack team on the `#help` channel. If your team is using LocalStack for Snowflake, you can also request support by [contacting us](https://localstack.cloud/contact). We would be happy to setup a private Slack channel for your team to provide dedicated support.
35
+
The Snowflake emulator is currently in **preview**. To get help, you can join the [Slack community](https://localstack.cloud/slack) and share your feedback, questions, and suggestions with the LocalStack team on the `#help` channel. If your team is using LocalStack for Snowflake, you can also request support by [contacting us](https://localstack.cloud/contact). We would be happy to setup a private Slack channel for your team to provide dedicated support.
Before starting, ensure you have a valid `LOCALSTACK_AUTH_TOKEN` to access the Snowflake emulator. Refer to the [Auth Token guide](https://docs.localstack.cloud/getting-started/auth-token/) to obtain your Auth Token and specify it in the `LOCALSTACK_AUTH_TOKEN` environment variable.
27
-
{{</alert>}}
25
+
:::
28
26
29
27
### `localstack` CLI
30
28
31
29
To start the Snowflake Docker container using the `localstack` CLI, execute the following command:
### The `snowflake.localhost.localstack.cloud` hostname doesn't resolve on my machine, what can I do?
106
109
107
110
On some systems, including some newer versions of MacOS, the domain name `snowflake.localhost.localstack.cloud` may not resolve properly.
108
111
If you are encountering network issues and your Snowflake client drivers are unable to connect to the emulator, you may need to manually add the following entry to your `/etc/hosts` file:
109
112
110
-
{{< command >}}
113
+
```bash
111
114
127.0.0.1 snowflake.localhost.localstack.cloud
112
-
{{< / command >}}
115
+
```
113
116
114
117
## Next steps
115
118
116
-
Now that the Snowflake emulator is installed, you can use it for developing and testing your Snowflake data pipelines. Refer to our [Quickstart](/aws/getting-started/quickstart) guide to get started.
119
+
Now that the Snowflake emulator is installed, you can use it for developing and testing your Snowflake data pipelines. Refer to our [Quickstart](/aws/getting-started/quickstart) guide to get started.
Copy file name to clipboardExpand all lines: src/content/docs/snowflake/getting-started/quickstart.md
+19-18Lines changed: 19 additions & 18 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,8 +4,6 @@ description: Get started with LocalStack for Snowflake in a few simple steps
4
4
template: doc
5
5
---
6
6
7
-
8
-
9
7
## Introduction
10
8
11
9
This guide explains how to set up the Snowflake emulator and develop a Python program using the Snowflake Connector for Python (`snowflake-connector-python`) to interact with emulated Snowflake running on your local machine.
@@ -21,19 +19,22 @@ This guide explains how to set up the Snowflake emulator and develop a Python pr
21
19
22
20
Before you begin, pull the Snowflake emulator image (`localstack/snowflake`) and start the container:
@@ -90,9 +91,9 @@ This program creates a table named `ability`, inserts rows, and fetches the resu
90
91
91
92
Execute the Python program with:
92
93
93
-
{{< command >}}
94
-
$ python main.py
95
-
{{< / command >}}
94
+
```bash
95
+
python main.py
96
+
```
96
97
97
98
The output should be:
98
99
@@ -122,9 +123,9 @@ Verify the results by navigating to the LocalStack logs:
122
123
123
124
To stop LocalStack and remove locally created resources, use:
124
125
125
-
{{< command >}}
126
-
$ localstack stop
127
-
{{< / command >}}
126
+
```bash
127
+
localstack stop
128
+
```
128
129
129
130
LocalStack is ephemeral and doesn't persist data across restarts. It runs inside a Docker container, and once it’s stopped, all locally created resources are automatically removed. In a future release of the Snowflake emulator, we will provide proper persistence and integration with our [Cloud Pods](https://docs.localstack.cloud/user-guide/state-management/cloud-pods/) feature as well.
130
131
@@ -134,4 +135,4 @@ You can now explore the following resources to learn more about the Snowflake em
134
135
135
136
-[User Guide]({{< ref "user-guide" >}}): Learn about the Snowflake emulator's features and how to use them.
136
137
-[Tutorials](/aws/tutorials): Explore tutorials to use the Snowflake emulator for local development and testing.
137
-
-[References]({{< ref "references" >}}): Find information about the Snowflake emulator's configuration, changelog, and function coverage.
138
+
-[References]({{< ref "references" >}}): Find information about the Snowflake emulator's configuration, changelog, and function coverage.
0 commit comments