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/python-feature-server.md
+8-3Lines changed: 8 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
## Overview
4
4
5
-
The feature server is an HTTP endpoint that serves features with JSON I/O. This enables users to write + read features from Feast online stores using any programming language that can make HTTP requests.
5
+
The feature server is an HTTP endpoint that serves features with JSON I/O. This enables users to write + read features from Feast online stores using any programming language that can make HTTP requests.
6
6
7
7
## CLI
8
8
@@ -155,6 +155,10 @@ curl -X POST \
155
155
### Pushing features to the online store
156
156
You can push data corresponding to a push source to the online store (note that timestamps need to be strings):
157
157
158
+
You can also define a pushmode to push offline data, either to the online store, offline store, or both. The feature server will throw an error if the online/offline
159
+
store doesn't support the push api functionality.
160
+
161
+
The request definition for pushmode is a string parameter `to` where the options are: ["online", "offline", "both"].
0 commit comments