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
fix: Fix Java helm charts to work with refactored logic. Fix FTS image (feast-dev#3105)
* fix: Fix Java helm charts to work with refactored logic. Also include gcp/aws in FTS image
Signed-off-by: Danny Chiao <danny@tecton.ai>
* fix helm docs and accidental issues
Signed-off-by: Danny Chiao <danny@tecton.ai>
* fix
Signed-off-by: Danny Chiao <danny@tecton.ai>
* fix
Signed-off-by: Danny Chiao <danny@tecton.ai>
* fix
Signed-off-by: Danny Chiao <danny@tecton.ai>
* fix issues with templates
Signed-off-by: Danny Chiao <danny@tecton.ai>
* fix issues with templates
Signed-off-by: Danny Chiao <danny@tecton.ai>
* fix serving README
Signed-off-by: Danny Chiao <danny@tecton.ai>
* fix go
Signed-off-by: Danny Chiao <danny@tecton.ai>
Signed-off-by: Danny Chiao <danny@tecton.ai>
> Warning: this is experimental, and only supports a local file registry + Redis
28
+
61
29
Furthermore, if you wish to use the Go feature server, then you must install the Apache Arrow C++ libraries, and your `feature_store.yaml` should include `go_feature_server: True`.
62
30
For more details, see the [docs](https://docs.feast.dev/reference/feature-servers/go-feature-server).
31
+
63
32
The docker image might look like:
64
33
```
65
-
FROM python:3.8
66
-
67
-
RUN apt update && \
68
-
apt install -y jq
69
-
70
-
RUN pip install pip --upgrade
71
-
72
-
RUN pip install feast
34
+
FROM python:3.8
35
+
36
+
RUN apt update && \
37
+
apt install -y jq
38
+
RUN pip install pip --upgrade
39
+
RUN pip install feast
40
+
RUN apt update
41
+
RUN apt install -y -V ca-certificates lsb-release wget
Deployment assumes that `feature_store.yaml` exists on docker image. Example docker image:
13
+
```
14
+
FROM python:3.8
15
+
16
+
RUN apt update && \
17
+
apt install -y jq
18
+
19
+
RUN pip install pip --upgrade
20
+
21
+
RUN pip install feast
22
+
23
+
COPY feature_store.yaml /feature_store.yaml
24
+
```
25
+
26
+
### Go feature server
27
+
> Warning: this is experimental, and only supports a local file registry + Redis
28
+
29
+
Furthermore, if you wish to use the Go feature server, then you must install the Apache Arrow C++ libraries, and your `feature_store.yaml` should include `go_feature_server: True`.
30
+
For more details, see the [docs](https://docs.feast.dev/reference/feature-servers/go-feature-server).
31
+
32
+
The docker image might look like:
33
+
```
34
+
FROM python:3.8
35
+
36
+
RUN apt update && \
37
+
apt install -y jq
38
+
RUN pip install pip --upgrade
39
+
RUN pip install feast
40
+
RUN apt update
41
+
RUN apt install -y -V ca-certificates lsb-release wget
0 commit comments