Skip to content

Commit 51d1b6c

Browse files
committed
Answer FAQ about registry in module 0
Signed-off-by: Danny Chiao <danny@tecton.ai>
1 parent 7c54201 commit 51d1b6c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

module_0/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ Let's quickly review some Feast concepts needed to build this ML platform / use
7474
| Entity | The main entity we need here is a driver entity (with `driver_id` as the join key). Entities are used to construct composite keys to join feature views together. Typically, they map to the unique ids that you will have available at training / inference time. |
7575
| Feature view | We'll have various feature views corresponding to different logical groups of features and transformations from data sources keyed on entities. These can be shared / re-used by data scientists and engineers and are registered with `feast apply`. <br><br/> Feast also supports reusable last mile transformations with `OnDemandFeatureView`s. We explore this in [Module 2](../module_2/README.md) |
7676
| Feature service | We build different model versions with different sets of features using feature services (`model_v1`, `model_v2`). Feature services group features a given model version depends on. It allows retrieving all necessary model features by using a feature service name. |
77-
| Registry | Where Feast tracks registered features, data sources, entities, feature services and metadata. Users + model servers will pull from this to discover registered features. |
77+
| Registry | Where Feast tracks registered features, data sources, entities, feature services and metadata. Users + model servers will pull from this to discover registered features.<br></br> This is by default a single file which is not human readable (it's serialized protocol buffer). In the upcoming release, you can use SQLAlchemy to store this in a database like Postgres / MySQL. |
7878
| Provider | We use the AWS provider here. A provider is a customizable interface that Feast uses to orchestrate feature generation / retrieval. <br></br>Specifying a built-in provider (e.g. `aws`) ensures your registry can be stored in S3 (and also specifies default offline / online stores) |
7979
| Offline store | What Feast will use to execute point in time joins (typically a data warehouse). Here we use `file` |
8080
| Online store | Low-latency data store that Feast uses to power online inference. Feast ingests offline feature values and streaming features into the online store. In this module, we do not need one. |

0 commit comments

Comments
 (0)