Skip to content

Commit

Permalink
GitBook: [master] 2 pages modified
Browse files Browse the repository at this point in the history
  • Loading branch information
woop authored and gitbook-bot committed Aug 31, 2021
1 parent 913e497 commit e895bc4
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
1 change: 1 addition & 0 deletions docs/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
* [Architecture](getting-started/concepts/architecture-and-components/README.md)
* [Overview](getting-started/concepts/architecture-and-components/overview.md)
* [Feature repository](getting-started/concepts/architecture-and-components/feature-repository.md)
* [Registry](getting-started/concepts/architecture-and-components/untitled.md)
* [Offline store](getting-started/concepts/architecture-and-components/offline-store.md)
* [Online store](getting-started/concepts/architecture-and-components/online-store.md)
* [Provider](getting-started/concepts/architecture-and-components/provider.md)
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Registry

The Feast feature registry is a central catalog of all the feature definitions and their related metadata. It allows data scientists to search, discover, and collaborate on new features.

Each Feast deployment has a single feature registry. Feast only supports file-based registries today, but supports three different backends

* `Local`: Used as a local backend for storing the registry during development
* `S3`: Used as a centralized backend for storing the registry on AWS
* `GCS`: Used as a centralized backend for storing the registry on GCP

The feature registry is updated during different operations when using Feast. More specifically, objects within the registry \(entities, feature views, feature services\) are updated when running `apply` from the Feast CLI, but metadata about objects can also be updated during operations like materialization.

Users interact with a feature registry through the Feast SDK. Listing all feature views:

```python
fs = FeatureStore("my_feature_repo/")
print(fs.list_feature_views())
```

Or retrieving a specific feature view:

```python
fs = FeatureStore("my_feature_repo/")
fv = fs.get_feature_view(“my_fv1”)
```

{% hint style="info" %}
The feature registry is a [Protobuf representation](https://github.com/feast-dev/feast/blob/master/protos/feast/core/Registry.proto) of Feast metadata. This Protobuf file can be read programmatically from other programming languages, but no compatibility guarantees are made on the internal structure of the registry.
{% endhint %}

0 comments on commit e895bc4

Please sign in to comment.