RetrySettings Class
Parallel RetrySettings.
- Inheritance
-
azure.ai.ml.entities._mixins.RestTranslatableMixinRetrySettingsazure.ai.ml.entities._mixins.DictMixinRetrySettings
Constructor
RetrySettings(*, timeout: int | str | None = None, max_retries: int | str | None = None, **kwargs: Any)
Parameters
Name | Description |
---|---|
timeout
Required
|
Timeout in seconds for each invocation of the run() method. (optional) This value could be set through PipelineParameter. |
max_retries
Required
|
The number of maximum tries for a failed or timeout mini batch. The range is [1, int.max]. This value could be set through PipelineParameter. A mini batch with dequeue count greater than this won't be processed again and will be deleted directly. |
Keyword-Only Parameters
Name | Description |
---|---|
timeout
Required
|
|
max_retries
Required
|
|
Methods
get | |
has_key | |
items | |
keys | |
update | |
values |
get
get(key: Any, default: Any | None = None) -> Any
Parameters
Name | Description |
---|---|
key
Required
|
|
default
|
Default value: None
|
has_key
has_key(k: Any) -> bool
Parameters
Name | Description |
---|---|
k
Required
|
|
items
items() -> list
keys
keys() -> list
update
update(*args: Any, **kwargs: Any) -> None
values
values() -> list
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.
Azure SDK for Python