RetrySettings Class

Parallel RetrySettings.

Inheritance
azure.ai.ml.entities._mixins.RestTranslatableMixin
RetrySettings
azure.ai.ml.entities._mixins.DictMixin
RetrySettings

Constructor

RetrySettings(*, timeout: int | str | None = None, max_retries: int | str | None = None, **kwargs: Any)

Parameters

Name Description
timeout
Required
int

Timeout in seconds for each invocation of the run() method. (optional) This value could be set through PipelineParameter.

max_retries
Required
int

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