Skip to content
Merged
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
Prev Previous commit
Next Next commit
Update docstrings
Signed-off-by: Sebastian Jäger <sebastjaeger@gmail.com>
  • Loading branch information
sebastjaeger committed Mar 21, 2025
commit 88d96194c7ffa5c6289e47004917502bb2069d78
9 changes: 6 additions & 3 deletions sdk/python/feast/infra/online_stores/dynamodb.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,13 +96,16 @@ class DynamoDBOnlineStoreConfig(FeastConfigBaseModel):
total_max_retry_attempts: Union[int, None] = None
"""Maximum number of total attempts that will be made on a single request.

Cf.
Maps to `retries.total_max_attempts in botocore.config.Config. Cf.
https://github.com/boto/botocore/blob/dd8406d5fa1df18037d1dd2977aec47334f7e3ce/botocore/args.py#L558
as for why `max_attempts` is not exposed here.
as for why `retries.max_attempts` is not exposed here.
"""

retry_mode: Union[Literal["legacy", "standard", "adaptive"], None] = None
"""The type of retry mode (aio)botocore should use."""
"""The type of retry mode (aio)botocore should use.

Maps to `retries.mode in botocore.config.Config.
"""


class DynamoDBOnlineStore(OnlineStore):
Expand Down