|
3 | 3 |
|
4 | 4 | ### Overview |
5 | 5 |
|
6 | | -This repository contains the following Feast components |
7 | | -* Feast Core: The central feature registry used to define and manage entities and features |
8 | | -* Feast Serving: A service used to serve the latest feature values to models |
9 | | -* Feast Java SDK: A client used to retrieve features from Feast Serving |
10 | | -* Helm Charts: The repository also contains Helm charts to deploy Feast Core and Feast Serving into a Kubernetes cluster |
| 6 | +This repository contains the following Feast components. |
| 7 | +* Feast Core: The central feature registry used to define and manage entities and features. |
| 8 | +* Feast Serving: A service used to serve the latest feature values to models. |
| 9 | +* Feast Java SDK: A client used to retrieve features from Feast Serving. |
| 10 | +* Helm Charts: The repository also contains Helm charts to deploy Feast Core and Feast Serving into a Kubernetes cluster. |
11 | 11 |
|
12 | 12 | ### Architecture |
13 | 13 |
|
14 | 14 |  |
15 | 15 |
|
16 | 16 |
|
17 | | -* Feast Core has a dependency on Postgres |
18 | | -* Feast Serving has a dependency on an online store (database) for retrieving features (like Redis) |
19 | | -* Feast Serving has a dependency on Feast Core |
20 | | -* The process of ingesting data into the online store (Redis) is decoupled from the process of reading from it. Please see [Feast Spark](https://github.com/feast-dev/feast-spark) for more details about ingesting data into the online store. |
| 17 | +* Feast Core has a dependency on Postgres. |
| 18 | +* Feast Serving has a dependency on an online store (Redis) for retrieving features. The process of ingesting data into the online store (Redis) is decoupled from the process of reading from it. Please see [Feast Spark](https://github.com/feast-dev/feast-spark) for more details about ingesting data into the online store. |
| 19 | +* Feast Serving has a dependency on Feast Core. |
21 | 20 | * The Go and Python Clients are not a part of this repository. |
22 | 21 |
|
23 | 22 | ### Running tests |
24 | 23 |
|
25 | | -To run unit tests |
| 24 | +To run unit tests: |
26 | 25 |
|
27 | 26 | ``` |
28 | 27 | make test-java |
29 | 28 | ``` |
30 | 29 |
|
31 | | -To run integration tests |
| 30 | +To run integration tests: |
32 | 31 |
|
33 | 32 | ``` |
34 | 33 | make test-java-integration |
|
0 commit comments