Skip to content

Commit 3384db7

Browse files
committed
remove commented out text
Signed-off-by: tokoko <togurgenidze@gmail.com>
1 parent df18af1 commit 3384db7

File tree

1 file changed

+0
-29
lines changed

1 file changed

+0
-29
lines changed

docs/getting-started/components/registry.md

Lines changed: 0 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -45,32 +45,3 @@ Instantiating a `FeatureStore` object can then point to this:
4545
```python
4646
store = FeatureStore(repo_path=".")
4747
```
48-
49-
<!-- Each Feast deployment has a single feature registry. Feast only supports file-based registries today, but supports four different backends.
50-
51-
* `Local`: Used as a local backend for storing the registry during development
52-
* `S3`: Used as a centralized backend for storing the registry on AWS
53-
* `GCS`: Used as a centralized backend for storing the registry on GCP
54-
* `[Alpha] Azure`: Used as centralized backend for storing the registry on Azure Blob storage. -->
55-
56-
57-
<!-- 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.
58-
59-
Users interact with a feature registry through the Feast SDK. Listing all feature views:
60-
61-
```python
62-
fs = FeatureStore("my_feature_repo/")
63-
print(fs.list_feature_views())
64-
```
65-
66-
Or retrieving a specific feature view:
67-
68-
```python
69-
fs = FeatureStore("my_feature_repo/")
70-
fv = fs.get_feature_view(“my_fv1”)
71-
```
72-
73-
{% hint style="info" %}
74-
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.
75-
{% endhint %}
76-
-->

0 commit comments

Comments
 (0)