File tree 2 files changed +20
-0
lines changed
2 files changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -56,6 +56,15 @@ make build-docker REGISTRY=gcr.io/kf-feast VERSION=develop
56
56
```
57
57
58
58
59
+ #### IDE Setup
60
+ If you're using IntelliJ, some additional steps may be needed to make sure IntelliJ autocomplete works as expected.
61
+ Specifically, proto-generated code is not indexed by IntelliJ. To fix this, navigate to the following window in IntelliJ:
62
+ ` Project Structure > Modules > datatypes-java ` , and mark the following folders as ` Source ` directorys:
63
+ - target/generated-sources/protobuf/grpc-java
64
+ - target/generated-sources/protobuf/java
65
+ - target/generated-sources/annotations
66
+
67
+
59
68
## Feast Core
60
69
### Environment Setup
61
70
Setting up your development environment for Feast Core:
Original file line number Diff line number Diff line change @@ -88,3 +88,14 @@ with open("/tmp/000000000000.avro", "rb") as f:
88
88
print(df.head(5))
89
89
EOF
90
90
```
91
+ #### Working with Feast 0.10+
92
+ Feast serving supports reading feature values materialized into Redis by feast 0.10+. To configure this, feast-serving
93
+ needs to be able to read the registry file for the project.
94
+ The location of the registry file can be specified in the ` application.yml ` like so:
95
+ ``` yaml
96
+ feast :
97
+ registry : " src/test/resources/docker-compose/feast10/registry.db"
98
+ ` ` `
99
+
100
+ This changes the behaviour of feast-serving to look up feature view definitions and specifications from the registry file instead
101
+ of the core service.
You can’t perform that action at this time.
0 commit comments