const df = require("durable-functions");
module.exports = df.orchestrator(function*(context) {
const retryOptions = new df.RetryOptions(5000, 3);
yield context.df.callActivityWithRetry("FlakyFunction", retryOptions);
// ...
});
最大尝试次数:重试尝试的最大次数。
第一次重试间隔:第一次重试之前等待的时间。
退避系数:用于确定退避增长率的系数。默认为 1。
如何设置退避系数?