Skip to content

Commit

Permalink
docs: Add Snowflake registry bolierplate (feast-dev#3583)
Browse files Browse the repository at this point in the history
Signed-off-by: Miles Adkins <miles.adkins@snowflake.com>
  • Loading branch information
sfc-gh-madkins committed Apr 21, 2023
1 parent e2b03fd commit ffd50fd
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 3 deletions.
7 changes: 4 additions & 3 deletions docs/reference/offline-stores/snowflake.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ The [Snowflake](https://trial.snowflake.com) offline store provides support for
* Entity dataframes can be provided as a SQL query or can be provided as a Pandas dataframe. A Pandas dataframes will be uploaded to Snowflake as a temporary table in order to complete join operations.

## Getting started
In order to use this offline store, you'll need to run `pip install 'feast[snowflake]'`.
In order to use this offline store, you'll need to run `pip install 'feast[snowflake]'`.

If you're using a file based registry, then you'll also need to install the relevant cloud extra (`pip install 'feast[snowflake, CLOUD]'` where `CLOUD` is one of `aws`, `gcp`, `azure`)

Expand All @@ -25,9 +25,10 @@ offline_store:
account: snowflake_deployment.us-east-1
user: user_login
password: user_password
role: sysadmin
warehouse: demo_wh
role: SYSADMIN
warehouse: COMPUTE_WH
database: FEAST
schema: PUBLIC
```
{% endcode %}
Expand Down
30 changes: 30 additions & 0 deletions docs/reference/registry/snowflake.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Snowflake registry

## Description

The [Snowflake](https://trial.snowflake.com) registry provides support for storing the protobuf representation of your feature store objects (data sources, feature views, feature services, etc.) Because Snowflake is an ACID compliant database, this allows for changes to individual objects atomically.

An example of how to configure this would be:

## Example

{% code title="feature_store.yaml" %}
```yaml
project: my_feature_repo
provider: local
registry:
registry_type: snowflake.registry
account: snowflake_deployment.us-east-1
user: user_login
password: user_password
role: SYSADMIN
warehouse: COMPUTE_WH
database: FEAST
schema: PUBLIC
cache_ttl_seconds: 60
offline_store:
...
```
{% endcode %}
The full set of configuration options is available in [SnowflakeRegistryConfig](https://rtd.feast.dev/en/latest/#feast.infra.registry.snowflake.SnowflakeRegistryConfig).

0 comments on commit ffd50fd

Please sign in to comment.