Skip to content

Commit

Permalink
fix: Correct formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Bhargav Dodla committed Feb 6, 2025
1 parent bf83bb8 commit a0d66f2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ class CassandraOnlineStoreConfig(FeastConfigBaseModel):
key_ttl_seconds: Optional[StrictInt] = None
"""
Default TTL (in seconds) to apply to all tables if not specified in FeatureView. Value 0 or None means No TTL.
Feature View specific key_ttl_seconds will take precedence over this. To override prefix your config with "online_store_".
Feature View specific key_ttl_seconds will take precedence over this. To override prefix your config with "online_store_".
"""

key_batch_size: Optional[StrictInt] = 10
Expand Down Expand Up @@ -196,16 +196,16 @@ class CassandraLoadBalancingPolicy(FeastConfigBaseModel):
"""
Controls the number of concurrent writes to the database.
Feature View specific write_concurrency will take precedence over this.
To override prefix your config with "online_store_".
To override prefix your config with "online_store_".
Default: 100.
"""

write_rate_limit: Optional[StrictInt] = 0
"""
The maximum number of write batches per second. Value 0 means no rate limiting.
The maximum number of write batches per second. Value 0 means no rate limiting.
For spark materialization engine, this configuration is per executor task.
Feature View specific write_rate_limit will take precedence over this.
To override prefix your config with "online_store_".
To override prefix your config with "online_store_".
"""


Expand Down
2 changes: 1 addition & 1 deletion sdk/python/feast/infra/online_stores/redis.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ class RedisOnlineStoreConfig(FeastConfigBaseModel):
key_ttl_seconds: Optional[int] = None
"""
(Optional) redis key bin ttl (in seconds) for expiring entities. Value None means No TTL. Value 0 means expire in 0 seconds.
Feature View specific key_ttl_seconds will take precedence over this. To override prefix your config with "online_store_".
Feature View specific key_ttl_seconds will take precedence over this. To override prefix your config with "online_store_".
"""

full_scan_for_deletion: Optional[bool] = True
Expand Down

0 comments on commit a0d66f2

Please sign in to comment.