是否可以在 Azure Function App 中对不同的队列触发器进行不同的设置?

Is it possible to have different settings for different Queue triggers in an Azure Function App?

以下来自 Azure 存储队列文档 https://docs.microsoft.com/en-us/azure/azure-functions/functions-bindings-storage-queue。在我看来,Azure Function 应用程序中的所有队列触发器都获得相同的设置(“队列”块中的设置),并且无法为不同的队列触发器设置不同的设置。我对么?如果是这样,是否有任何关于潜在解决方法的建议?

{
    "version": "2.0",
    "extensions": {
        "queues": {
            "maxPollingInterval": "00:00:02",
            "visibilityTimeout" : "00:00:30",
            "batchSize": 16,
            "maxDequeueCount": 5,
            "newBatchThreshold": 8,
            "messageEncoding": "base64"
        }
    }
}

据我所知,在 Azure function app 中,所有 queue triggers 共享相同的设置。

恐怕您只能创建多个 Azure 函数应用程序,然后创建不同的设置。