Registry
Updating the registry
Accessing the registry from clients
Option 1: programmatically specifying the registry
repo_config = RepoConfig(
registry=RegistryConfig(path="gs://feast-test-gcs-bucket/registry.pb"),
project="feast_demo_gcp",
provider="gcp",
offline_store="file", # Could also be the OfflineStoreConfig e.g. FileOfflineStoreConfig
online_store="null", # Could also be the OnlineStoreConfig e.g. RedisOnlineStoreConfig
)
store = FeatureStore(config=repo_config)Option 2: specifying the registry in the project's feature_store.yaml file
feature_store.yaml fileLast updated
Was this helpful?