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
LOAD_FEAST_SERVING_HOST=feast.serving.example.com LOAD_FEAST_SERVING_PORT=6566 go run main.go
13
+
```
14
+
```
15
+
2020/07/24 14:00:02 Creating client to connect to Feast Serving at localhost:6566
16
+
2020/07/24 14:00:02 Starting server on port:8080
17
+
```
18
+
19
+
The following command simply echos the version of Feast Serving. Useful for testing network latency
20
+
```
21
+
curl localhost:8080/echo
22
+
```
23
+
24
+
This command will send a single GetOnlineFeatures request to the configured Feast serving instance. The `entity_count` parameter is used to set how many entities will be sent (unique users in this case). The higher the number of entities the higher the expected latency.
0 commit comments