[Alpha] Go feature server
Overview
Configuration of feature_store.yaml
feature_store.yaml# -*- coding: utf-8 -*-
from feast.feature_store import FeatureStore
def main():
# Init the Feature Store
store = FeatureStore(repo_path="./feature_repo/")
# Start the feature transformation server
# default port is 6569
store.serve_transformations(6569)
if __name__ == "__main__":
main()Supported APIs
Method
API
Comment
OTEL based Observability
Demo
Reference
Last updated
Was this helpful?