作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 Azure 函数从队列中读取消息,这需要很长时间,为此,我在 host.json 文件中使用了 autoRenewTimeout,但消息在处理时仍然会重新出现在队列中。
我的要求是长时间处理消息,下面是json配置文件。
"version": "2.0",
"logging": {
"applicationInsights": {
"samplingExcludedTypes": "Request",
"samplingSettings": {
"isEnabled": true
}
}
},
"serviceBus": {
// the maximum duration within which the message lock will be renewed automatically.
"autoRenewTimeout": "05:00:00"
},
"functionTimeout": "05:02:00"
}
最佳答案
我认为您已经使用 V1 函数引用配置了 host.json。对于 V2 及更高版本,配置已更改。请参阅this对于服务总线部分,请参阅 this用于 V2+ 的 host.json。以下只是一个示例,请根据您的需要进行调整。
{
"version": "2.0",
"extensions": {
"serviceBus": {
"prefetchCount": 100,
"messageHandlerOptions": {
"autoComplete": true,
"maxConcurrentCalls": 32,
"maxAutoRenewDuration": "00:05:00"
},
"sessionHandlerOptions": {
"autoComplete": false,
"messageWaitTimeout": "00:00:30",
"maxAutoRenewDuration": "00:55:00",
"maxConcurrentSessions": 16
}
}
}
}
关于c# - Azure 功能在主机 json 文件中设置 autoRenewTimeout 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65068703/
有人可以提供有关使用 Azure 服务总线 OnMessageOptions.AutoRenewTimeout 的更多指导吗 http://msdn.microsoft.com/en-us/libra
我正在查看服务 AutoRenewTimeout 功能的文档,并在 Lock Renewal Policy on service-bus messages 上发现了这篇文章。 。 它讨论了AutoRe
我正在使用 Azure 函数从队列中读取消息,这需要很长时间,为此,我在 host.json 文件中使用了 autoRenewTimeout,但消息在处理时仍然会重新出现在队列中。 我的要求是长时间处
我是一名优秀的程序员,十分优秀!