◐ Shell
reader mode source ↗
Skip to content
Merged
Changes from all commits
File filter
Conversations
Jump to
Diff view
Apply and reload
Show whitespace
Diff view
Apply and reload
11 changes: 9 additions & 2 deletions sdk/python/feast/infra/online_stores/redis.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,9 @@ class RedisOnlineStoreConfig(FeastConfigBaseModel):
key_ttl_seconds: Optional[int] = None
"""(Optional) redis key bin ttl (in seconds) for expiring entities"""


class RedisOnlineStore(OnlineStore):
"""
Expand Down Expand Up @@ -160,9 +163,13 @@ def update(
entities_to_keep: Entities to keep
partial: Whether to do a partial update
"""

for table in tables_to_delete:
self.delete_table(config, table)

def teardown(
self,
Expand Down
Toggle all file notes Toggle all file annotations