Skip to content

Commit eb39cae

Browse files
authored
fix: Update the serialization version to 3 in feature_repo.yaml (#19)
Signed-off-by: Shuchu Han <shuchu.han@gmail.com>
1 parent 57d41b1 commit eb39cae

2 files changed

Lines changed: 9 additions & 9 deletions

File tree

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff 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

2727
1. 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
@@ -91,8 +91,8 @@ Steps:
9191
1. terminate the previous running `app.py` if it is still running.
9292
2. 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`
9696
4. test the URI "http://localhost:8080/health". We suppose to see 'Healthy' word be displayed.
9797
5. test the following post for testing get-online-features. Make sure the `feast materialize` command have executed.
9898
```

feature_repo/feature_store.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ online_store:
88
connection_string: "localhost:6379"
99
offline_store:
1010
type: dask
11-
entity_key_serialization_version: 2
11+
entity_key_serialization_version: 3
1212
go_feature_serving: true
1313
feature_server:
1414
type: local
15-
transformation_service_endpoint: "localhost:6569"
15+
transformation_service_endpoint: "localhost:6569"

0 commit comments

Comments
 (0)