Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/reference/online-stores/hybrid.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ project: my_feature_repo
registry: data/registry.db
provider: local
online_store:
type: hybrid_online_store.HybridOnlineStore
type: hybrid
routing_tag: team # or any tag name you want to use in FeatureView's for routing
online_stores:
- type: bigtable
Expand Down
Empty file.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
Example configuration (feature_store.yaml):

online_store:
type: hybrid_online_store.HybridOnlineStore
type: hybrid
routing_tag: team # or any tag name you want to use for routing
online_stores:
- type: feast.infra.online_stores.bigtable.BigtableOnlineStore
Expand Down Expand Up @@ -64,9 +64,7 @@ class HybridOnlineStoreConfig(FeastConfigBaseModel):
online_stores: A list of OnlineStoresWithConfig, each specifying the type and config for an online store backend.
"""

type: Literal["HybridOnlineStore", "hybrid_online_store.HybridOnlineStore"] = (
"hybrid_online_store.HybridOnlineStore"
)
type: Literal["hybrid"] = "hybrid"

class OnlineStoresWithConfig(FeastConfigBaseModel):
"""
Expand Down
1 change: 1 addition & 0 deletions sdk/python/feast/repo_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@
"qdrant": "feast.infra.online_stores.qdrant_online_store.qdrant.QdrantOnlineStore",
"couchbase.online": "feast.infra.online_stores.couchbase_online_store.couchbase.CouchbaseOnlineStore",
"milvus": "feast.infra.online_stores.milvus_online_store.milvus.MilvusOnlineStore",
"hybrid": "feast.infra.online_stores.hybrid_online_store.hybrid_online_store.HybridOnlineStore",
**LEGACY_ONLINE_STORE_CLASS_FOR_TYPE,
}

Expand Down
Loading