We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e0ba03 commit a2302beCopy full SHA for a2302be
sdk/python/feast/infra/online_stores/online_store.py
@@ -135,7 +135,6 @@ def teardown(
135
"""
136
pass
137
138
- @abstractmethod
139
def retrieve_online_documents(
140
self,
141
config: RepoConfig,
@@ -159,4 +158,6 @@ def retrieve_online_documents(
159
158
where the first item is the event timestamp for the row, and the second item is a dict of feature
160
name to embeddings.
161
162
- pass
+ raise NotImplementedError(
+ f"Online store {self.__class__.__name__} does not support online retrieval"
163
+ )
0 commit comments