forked from feast-dev/feast
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: Add Snowflake registry bolierplate (feast-dev#3583)
Signed-off-by: Miles Adkins <miles.adkins@snowflake.com> Signed-off-by: zerafachris PERSONAL <zerafachris@gmail.com>
- Loading branch information
1 parent
c691b6f
commit a44591f
Showing
2 changed files
with
34 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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). |