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
Copy file name to clipboardExpand all lines: docs/reference/feature-servers/go-feature-retrieval.md
+14-2Lines changed: 14 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,8 +16,20 @@ However, some additional dependencies are required for Go <-> Python interoperab
16
16
```
17
17
pip install feast[go]
18
18
```
19
+
You will also have to install the apache-arrow c++ libraries, since we use the cgo memory allocator to prevent memory from being incorrectly garbage collected, detailed in these [docs](https://pkg.go.dev/github.com/apache/arrow/go/[email protected]/cdata#ExportArrowRecordBatch).
19
20
20
-
For developers, if you want to build from source, run `make compile-go-lib` to build and compile the go server.
21
+
For macos, run `brew install apache-arrow`.
22
+
For linux users, you have to install `libarrow-dev`.
For developers, if you want to build from source, run `make compile-go-lib` to build and compile the go server. In order to build the go binaries, you will need to install the `apache-arrow` c++ libraries.
0 commit comments