Registry server
Last updated
Was this helpful?
Last updated
Was this helpful?
The Registry server supports both gRPC and REST interfaces for interacting with feature metadata. While gRPC remains the default protocol—enabling clients in any language with gRPC support—the REST API allows users to interact with the registry over standard HTTP using any REST-capable tool or language.
There is a CLI command that starts the Registry server: feast serve_registry
. By default, remote Registry Server uses port 6570, the port can be overridden with a --port
flag.
To start the Registry Server in TLS mode, you need to provide the private and public keys using the --key
and --cert
arguments.
More info about TLS mode can be found in
To enable REST API support, start the registry server with REST mode enabled :
feast serve_registry --rest-api
Please see the detail how to configure Remote Registry client
Please refer the for more details on API Endpoints and Permissions.
Please refer the for more details on how to configure authentication and authorization.