gpt4 book ai didi

c# - DocumentDB 属性绑定(bind)如何响应节流?

转载 作者:太空宇宙 更新时间:2023-11-03 18:53:36 25 4
gpt4 key购买 nike

我有使用 DocumentDBAttribute 绑定(bind)来读取和写入文档的 azure 函数(C# v1 函数——非脚本)。在以下情况下,这些绑定(bind)如何响应节流?

  • 通过将项目添加到 ICollector 来编写项目
  • 通过提供 Id 读取项目

这是针对函数 v1。

第一种情况:

        //input binding
[DocumentDB(ResourceNames.APCosmosDBName,
ResourceNames.EpisodeOfCareCollectionName,
ConnectionStringSetting = "APCosmosDB",
CreateIfNotExists = true)] ICollector<EOC> eoc,
//...
eoc.Add(new EOC()); //what happens here if throttling is occuring?

第二种情况:

[DocumentDB(ResourceNames.ORHCasesDBName, ResourceNames.ORHCasesCollectionName, ConnectionStringSetting = "ORHCosmosDBCases", CreateIfNotExists = true, Id = "{id}")] string closedCaseStr,

最佳答案

输入和输出绑定(bind)都使用 CosmosDB SDK,它具有 retry mechanism到位。

默认情况下,SDK 会在受限结果上重试 9 次,之后会抛出异常,您的函数将出错。根据触发器类型,它会导致 HTTP 调用失败、将消息放回队列等。

重试遵循 Cosmos DB 返回的时间建议:

When a client is sending requests faster than the allowed rate, the service will return HttpStatusCode 429 (Too Many Request) to rate limit the client. The current implementation in the SDK will then wait for the amount of time the service tells it to wait and retry after the time has elapsed.

目前,无法使用默认策略以外的策略配置绑定(bind)。

关于c# - DocumentDB 属性绑定(bind)如何响应节流?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50845906/

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