逻辑应用程序是否支持随机增量的指数退避
Does logic apps support exponential back off with random delta
逻辑应用文档 here 表明逻辑应用支持使用以下 "input"
对 http 操作的重试策略
"retryPolicy" : {
"type": "<type-of-retry-policy>",
"interval": <retry-interval>,
"count": <number-of-retry-attempts>
}
文档指出:
The retry interval is specified in the ISO 8601 format. Its default
value is 20 seconds, which is also the minimum value. The maximum
value is 1 hour. The default retry count is 4, 4 is also the maximum
retry count. If the retry policy definition is not specified, a fixed
strategy is used with default retry count and interval values. To
disable the retry policy, set its type to None.
没有明确指出 None
和 Fixed
是否是唯一的重试策略类型。
我想知道是否有 ExponentialBackoff
类型(或类似的类型)。我还想知道它是否支持定义随机增量以帮助避免反复重试。
谢谢!
目前唯一支持的重试策略类型是 None 和 Fixed。如果您希望看到更多支持的重试策略类型(例如 exponential/randomized backoff),请随时在 feedback.azure.com/forums/287593-logic-apps
提交需求
现在添加了指数重试 - https://docs.microsoft.com/en-us/azure/logic-apps/logic-apps-exception-handling#retry-policies
逻辑应用文档 here 表明逻辑应用支持使用以下 "input"
"retryPolicy" : {
"type": "<type-of-retry-policy>",
"interval": <retry-interval>,
"count": <number-of-retry-attempts>
}
文档指出:
The retry interval is specified in the ISO 8601 format. Its default value is 20 seconds, which is also the minimum value. The maximum value is 1 hour. The default retry count is 4, 4 is also the maximum retry count. If the retry policy definition is not specified, a fixed strategy is used with default retry count and interval values. To disable the retry policy, set its type to None.
没有明确指出 None
和 Fixed
是否是唯一的重试策略类型。
我想知道是否有 ExponentialBackoff
类型(或类似的类型)。我还想知道它是否支持定义随机增量以帮助避免反复重试。
谢谢!
目前唯一支持的重试策略类型是 None 和 Fixed。如果您希望看到更多支持的重试策略类型(例如 exponential/randomized backoff),请随时在 feedback.azure.com/forums/287593-logic-apps
提交需求现在添加了指数重试 - https://docs.microsoft.com/en-us/azure/logic-apps/logic-apps-exception-handling#retry-policies