You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -10,4 +11,37 @@ This repository contains the following Feast components
10
11
11
12
# Architecture
12
13
13
-

14
+

15
+
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.
21
+
* The Go and Python Clients are not a part of this repository.
22
+
23
+
# Running tests
24
+
25
+
To run unit tests
26
+
27
+
```
28
+
make test-java
29
+
```
30
+
31
+
To run integration tests
32
+
33
+
```
34
+
make test-java-integration
35
+
```
36
+
37
+
# Building docker images
38
+
39
+
In order to build development versions of the Core and Serving images, please run the following commands:
0 commit comments