RequestOptions.OfferThroughput Property

Definition

Gets or sets the offer throughput provisioned for a collection in measurement of Requests-per-Unit in the Azure Cosmos DB service.

public int? OfferThroughput { get; set; }
member this.OfferThroughput : Nullable<int> with get, set
Public Property OfferThroughput As Nullable(Of Integer)

Property Value

The provisioned throughtput for this offer.

Examples

The followng example shows how to create a collection with offer throughtput.

await client.CreateDocumentCollectionAsync(
    database.SelfLink,
    new DocumentCollection { Id = "newcoll" },
    new RequestOptions { OfferThroughput = 50000 });

Remarks

This option is only valid when creating a document collection.

Refer to http://azure.microsoft.com/documentation/articles/documentdb-performance-levels/ for details on provision offer throughput.

Applies to

See also