gpt4 book ai didi

c# - 了解 Azure Functions HttpTrigger 缩放算法

转载 作者:行者123 更新时间:2023-12-03 03:46:06 27 4
gpt4 key购买 nike

我试图了解 Http 触发函数如何决定何时应该缩放。

我发现队列触发器使用了 IScaleMonitor 实现。它们的用途是:RabbitMQ Blob trigger Event hub 1 Event hub 2 Kafka Service bus 1 Service bus 2 Cosmos DB Storage queue

但我找不到任何适用于 HttpTriggers 的代码。有谁知道在哪里可以找到 http 缩放算法?

最佳答案

使用 HTTP 触发器的 Azure Function 会根据 host.json 中 maxConcurrentRequests 的设置进行缩放:

{
"extensions": {
"http": {
"maxConcurrentRequests": 100,
}
}
}

文档在这里:Azure Functions HTTP output bindings

使用服务总线的 Azure Function 会根据 host.json 文件中的 maxConcurrentCalls 设置进行缩放。

最大并发调用设置为 10 的示例 host.json 文件:

{
"extensions": {
"serviceBus": {
"messageHandlerOptions": {
"maxConcurrentCalls": 10
}
}
}
}

文档在这里:Azure Service Bus bindings for Azure Functions

关于c# - 了解 Azure Functions HttpTrigger 缩放算法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69128900/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com