Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions docs/reference/registries/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

Please see [Registry](../../getting-started/components/registry.md) for a conceptual explanation of registries.

{% content-ref url="metadata.md" %}
[metadata.md](metadata.md)
{% endcontent-ref %}

{% content-ref url="local.md" %}
[local.md](local.md)
{% endcontent-ref %}
Expand Down
29 changes: 29 additions & 0 deletions docs/reference/registries/metadata.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# Metadata info of feature_store.yaml

## Description

The metadata info of Feast `feature_store.yaml` is:

| Key | Required | Value Type |Definition |
| ------------------------|---------------------|------------------------|------------------------|
| project | Y | string | name of the project |
| provider | N | string | |
| registry | Y | NA | definition of registry |
| registry.path | Y | string | URI of storing registry data |
| registry.cache_ttl_seconds | N | integer | |
| registry.registry_type | N | string | type of registry server |
| registry.sqlalchemy_config_kwargs | N | NA | kwargs configuration for sql registry server|
| registry.account | N | string | cloud account type |
| registry.user | N | string | cloud login account |
| registry.password | N | string | cloud login password |
| registry.role | N | string | cloud login account role |
| registry.warehouse | N | string | snowflake warehouse name |
| registry.database | N | string | snowflake db name |
| registry.schema | N | string | snowflake schema name |
| online_store | Y | | |
| offline_store | Y | NA | | |
| offline_store.type | Y | string | storage type |
| entity_key_serialization_version | N | string | |
| feature_server | N | NA | config of feature server |
| feature_server.transformation_service_endpoint | N | string | python transformation server endpoint for Go feature server |