gpt4 book ai didi

c# - 使用代码/自动化的 Azure CosmosDB AutoScaling

转载 作者:太空狗 更新时间:2023-10-30 01:00:15 24 4
gpt4 key购买 nike

是否可以使用 c# 或 Azure Automation 自动缩放 CosmosDB 吞吐量?请提供示例。

最佳答案

存储会自动缩放。这是自动更改吞吐量的代码

//Fetch the resource to be updated
Offer offer = client.CreateOfferQuery()
.Where(r => r.ResourceLink == collection.SelfLink)
.AsEnumerable()
.SingleOrDefault();

// Set the throughput to 2500 request units per second
offer = new OfferV2(offer, 2500);

//Now persist these changes to the database by replacing the original resource
await client.ReplaceOfferAsync(offer);

在这里查看更多信息:https://learn.microsoft.com/en-us/azure/cosmos-db/set-throughput

HTH

关于c# - 使用代码/自动化的 Azure CosmosDB AutoScaling,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48099401/

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