File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -13,9 +13,9 @@ form in [demo_walkthrough.ipynb](demo_walkthrough.ipynb).
1313
1414## Requirements
1515
16- * Python 3.11
17- * Registry: Postgresql
18- * Offline Storage: duckdb
16+ * Python 3.12. 11
17+ * Registry: file
18+ * Offline Storage: dask
1919* Online Storage: Redis
2020
2121## Setup
@@ -26,8 +26,8 @@ You can setup the storages with Podman or Docker:
2626
27271 . Setup an online store with Redis by [ Podman] ( https://podman.io/ ) :
2828```
29- podman pull docker://bitnami/ redis:latest
30- podman run -d -p 6379:6379 --name redis -e "ALLOW_EMPTY_PASSWORD=yes" docker.io/bitnami /redis:latest
29+ podman pull redis:7.4.5
30+ podman run -d -p 6379:6379 --name redis -e "ALLOW_EMPTY_PASSWORD=yes" docker.io/library /redis:7.4.5
3131```
3232
3333### Setting up Feast
91911 . terminate the previous running ` app.py ` if it is still running.
92922 . start the Feast feature transformation server:
9393 ` python app_with_transformation_server.py `
94- 3 . start the Go feature server, assume you have built the Go binary and named it as 'feast ':
95- ` ./feast -chdir ./feature_repo `
94+ 3 . start the Go feature server, assume you have built the Go binary and named it as 'feast_go ':
95+ ` ./feast_go -chdir ./feature_repo -port 8080 `
96964 . test the URI "http://localhost:8080/health ". We suppose to see 'Healthy' word be displayed.
97975 . test the following post for testing get-online-features. Make sure the ` feast materialize ` command have executed.
9898```
Original file line number Diff line number Diff line change @@ -8,8 +8,8 @@ online_store:
88 connection_string : " localhost:6379"
99offline_store :
1010 type : dask
11- entity_key_serialization_version : 2
11+ entity_key_serialization_version : 3
1212go_feature_serving : true
1313feature_server :
1414 type : local
15- transformation_service_endpoint : " localhost:6569"
15+ transformation_service_endpoint : " localhost:6569"
You can’t perform that action at this time.
0 commit comments