RetriesConfig
relationalai.config.config_fields.ExecutionConfig
Configure execution retries and exponential backoff.
This model is used for the ExecutionConfig.retries
nested section in ExecutionConfig and
controls whether retries are enabled and how delay grows between attempts.
Attributes
Section titled “Attributes”.max_attempts
Section titled “.max_attempts”RetriesConfig.max_attempts: intMaximum number of attempts (including the first try).
.base_delay_s
Section titled “.base_delay_s”RetriesConfig.base_delay_s: floatBase backoff delay in seconds.
.max_delay_s
Section titled “.max_delay_s”RetriesConfig.max_delay_s: floatMaximum backoff delay in seconds.
.jitter
Section titled “.jitter”RetriesConfig.jitter: floatJitter factor applied to each delay (for example, 0.2 means ±20%).