From 3a158351d882fd830bf75abf1eb85926442f58cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javier=20de=20la=20R=C3=BAa=20Mart=C3=ADnez?= Date: Fri, 14 Nov 2025 11:05:41 +0100 Subject: [PATCH] [FSTORE-1910] Fix auth header in Feature Store REST api server --- docs/user_guides/fs/feature_view/feature-server.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/user_guides/fs/feature_view/feature-server.md b/docs/user_guides/fs/feature_view/feature-server.md index 6b86bb101..3212dde6a 100644 --- a/docs/user_guides/fs/feature_view/feature-server.md +++ b/docs/user_guides/fs/feature_view/feature-server.md @@ -8,7 +8,7 @@ This API server allows users to retrieve single/batch feature vectors from a fea ## How to use -From Hopsworks 3.3, you can connect to the Feature Vector Server via any REST client which supports POST requests. Set the X-API-HEADER to your Hopsworks API Key and send the request with a JSON body, [single](#request) or [batch](#request-1). By default, the server listens on the `0.0.0.0:4406` and the api version is set to `0.1.0`. Please refer to `/srv/hops/mysql-cluster/rdrs_config.json` config file located on machines running the REST Server for additional configuration parameters. +From Hopsworks 3.3, you can connect to the Feature Vector Server via any REST client which supports POST requests. Set the `X-API-KEY` to your Hopsworks API Key and send the request with a JSON body, [single](#request) or [batch](#request-1). By default, the server listens on the `0.0.0.0:4406` and the api version is set to `0.1.0`. Please refer to `/srv/hops/mysql-cluster/rdrs_config.json` config file located on machines running the REST Server for additional configuration parameters. In Hopsworks 3.7, we introduced a python client for the Online Store REST API Server. The python client is available in the `hsfs` module and can be installed using `pip install hsfs`. This client can be used instead of the Online Store SQL client in the `FeatureView.get_feature_vector(s)` methods. Check the corresponding [documentation](./feature-vectors.md) for these methods.