Skip to content

Commit

Permalink
Removed unused variable (#849)
Browse files Browse the repository at this point in the history
  • Loading branch information
SeanFeldman authored and kirankumarkolli committed Sep 25, 2019
1 parent 9eae712 commit b240f84
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Microsoft.Azure.Cosmos.Samples/Usage/BulkSupport/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -174,10 +174,9 @@ private static async Task InitializeAsync(CosmosClient client)
// We create a partitioned collection here which needs a partition key. Partitioned collections
// can be created with very high values of provisioned throughput (up to Throughput = 250,000)
// and used to store up to 250 GB of data.
ContainerProperties containerProperties = new ContainerProperties(containerId, partitionKeyPath: "/pk");

Console.WriteLine("The demo will create a 20000 RU/s container, press any key to continue.");
Console.ReadKey();

// Create with a throughput of 20000 RU/s - this demo is about throughput so it needs a higher degree of RU/s to show volume
// Indexing Policy to exclude all attributes to maximize RU/s usage
await database.DefineContainer(containerId, "/pk")
Expand Down

0 comments on commit b240f84

Please sign in to comment.