val client = new DocumentClient(endpoint,
masterKey,
new ConnectionPolicy(),
ConsistencyLevel.Session)
val collectionInfo = new DocumentCollection()
collectionInfo.setId("test")
val requestOptions = new RequestOptions()
requestOptionsNew.setOfferThroughput(1200)
client.createCollection("/dbs/xxx", collectionInfo, requestOptions)
上面的代码片段有助于在创建集合期间设置吞吐量。有谁知道如何修改此集合的吞吐量值? 非常感谢你。
答案 0 :(得分:1)
要更改现有集合的吞吐量,您需要在DocumentClient对象上调用replaceOffer
方法。
此方法需要Offer
类型的参数,为此您需要创建OfferV2
类的实例。