我有一个 Azure 队列触发器应用程序。它尝试尽快处理消息,但是当我在队列中有 1000 条消息时,我想限制它每秒处理的队列消息数。有没有办法设置限制?
我的目标是减慢我的函数处理消息的速度。
{
"generatedBy": "Microsoft.NET.Sdk.Functions-1.0.24",
"configurationSource": "attributes",
"bindings": [
{
"type": "queueTrigger",
"queueName": "fred",
"connection": "",
"name": "myQueueItem"
}
],
"disabled": false,
"scriptFile": "../bin/run.dll",
"entryPoint": "Fred.Run"
}